首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
王俊凯是自虐狂( ̄ー ̄)
获赞
6
粉丝
0
关注
0
看过 TA
10
University of Pennsylvania
2019
产品经理
IP属地:上海
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑王俊凯是自虐狂( ̄ー ̄)吗?
发布(24)
评论
刷题
收藏
王俊凯是自虐狂( ̄ー ̄)
关注TA,不错过内容更新
关注
01-22 15:36
已编辑
University of Pennsylvania 产品经理
题解 | 每个月Top3的周杰伦歌曲
with play_info as ( select month (pl.fdate) as month, si.song_name, si.song_id, count(pl.song_id) as play_pv from play_log pl inner join song_info si on pl.song_id = si.song_id inner join user_info ui on pl.user_id = ui.user_id where ui.age between 18 and 24 and singer_name = '周杰伦' group by si.song_...
0
点赞
评论
收藏
分享
01-21 16:58
University of Pennsylvania 产品经理
题解 | 浙大不同难度题目的正确率
select qd.difficult_level as diffcult_level, sum( case when qp.result = 'right' then 1 else 0 end ) / count(qp.question_id) as correct_rate from user_profile u inner join question_practice_detail qp on u.device_id = qp.device_id inner join question_detail qd on qp.question_id = qd.question_id where ...
0
点赞
评论
收藏
分享
01-21 13:48
已编辑
University of Pennsylvania 产品经理
题解 | 统计复旦用户8月练题情况
select u.device_id, university, count(q.result) as question_cnt, sum(case when q.result = 'right' then 1 else 0 end) as right_question_cnt from user_profile as u left join question_practice_detail as q on u.device_id = q.device_id and q.date like '2021-08%' where university = '复旦大学' group by u.devic...
0
点赞
评论
收藏
分享
01-21 10:48
University of Pennsylvania 产品经理
题解 | 找出每个学校GPA最低的同学
with rank_u as ( select device_id, university, gpa, RANK() OVER( PARTITION by university order by gpa ) as gpa_rank from user_profile ) select device_id, university, gpa from rank_u where gpa_rank = 1;
0
点赞
评论
收藏
分享
01-21 09:00
University of Pennsylvania 产品经理
题解 | 截取出年龄
select substring_index(substring_index(profile, ',', -2), ',', 1) as age, count(device_id) as number from user_submit group by age
0
点赞
评论
收藏
分享
01-20 20:43
University of Pennsylvania 产品经理
题解 | 计算用户的平均次日留存率
select count(q2.device_id) / count(q1.device_id) avg_ret from ( select distinct device_id, date from question_practice_detail ) as q1 left join ( select distinct device_id, date from question_practice_detail ) as q2 on q1.device_id = q2.device_id and DATEDIFF(q1.date, q2.date) = 1
0
点赞
评论
收藏
分享
03-17 11:19
已编辑
University of Pennsylvania 产品经理
题解 | 查找山东大学或者性别为男生的信息
select device_id, gender, age, gpa from user_profile where university = '山东大学' union all select device_id, gender, age, gpa from user_profile where gender = 'male';
0
点赞
评论
收藏
分享
01-19 11:34
University of Pennsylvania 产品经理
题解 | 统计每个用户的平均刷题数
select u.university, qd.difficult_level, count(q.device_id)/count(distinct q.device_id) avg_answer_cnt from user_profile u inner join question_practice_detail q on u.device_id = q.device_id inner join question_detail qd on q.question_id = qd.question_id where u.university = '山东大学' group by u.univers...
0
点赞
评论
收藏
分享
2018-09-29 02:22
University of Pennsylvania 产品经理
京东软件产品hr面都问些什么?
今天应该是北京时间下午7点半面试完了复试,十点多看到状态变成hr面待安排 想问问有没有朋友知道京东hr面都问些什么内容? 然后京东hr面刷人多吗?。。。
投递京东等公司10个岗位
0
点赞
评论
收藏
分享
1
2
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务