首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
已注销
获赞
0
粉丝
0
关注
9
看过 TA
49
IP属地:广东
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑已注销吗?
发布(9)
评论
刷题
已注销
关注TA,不错过内容更新
关注
2023-04-05 20:19
题解 | #统计复旦用户8月练题情况#
select t1.device_id,t1.university, count(CASE WHEN t2.question_id is not null THEN 1 else null end) question_cnt, count(CASE WHEN t2.result='right' THEN 1 else null end) right_question_cnt from (select device_id,university from user_profile where university = '复旦大学' ) t1 ...
0
点赞
评论
收藏
分享
2023-04-05 17:21
题解 | #找出每个学校GPA最低的同学#
SELECT device_id,t1.university,t1.gpa from user_profile t1 inner join (select min(gpa) as lowest_gpa,t2.university from user_profile t2 group by t2.university ) t3 on t1.university=t3.university and t1.gpa=t3.lowest_gpa order by t1.university ASC
0
点赞
评论
收藏
分享
2023-04-05 15:07
题解 | #截取出年龄#
select substring_index(substring_index(profile,',',3),',',-1) as age,count(*) as number from user_submit group by age
0
点赞
评论
收藏
分享
2023-04-05 14:58
题解 | #提取博客URL中的用户名#
select device_id, substring_index(blog_url,'/',-1) user_name from user_submit
0
点赞
评论
收藏
分享
2023-04-05 14:24
题解 | #计算用户的平均次日留存率#
select count(distinct t1.device_id,t1.date,t2.date)/count(distinct t1.device_id,t1.date) avg_ret from question_practice_detail t1 left join question_practice_detail t2 on t1.device_id=t2.device_id and datediff(t2.date,t1.date)= 1
0
点赞
评论
收藏
分享
2023-04-04 15:43
题解 | #计算用户8月每天的练题数量#
select EXTRACT(DAY FROM t1.date) as day,count(question_id)question_cnt from( select question_id,date from question_practice_detail where EXTRACT(MONTH FROM date) = 8 and EXTRACT(YEAR FROM date) = 2021 ) t1 group by t1.date
0
点赞
评论
收藏
分享
2023-04-04 14:36
题解 | #查看不同年龄段的用户明细#
Select device_id,gender, CASE when age<20 THEN '20岁以下' when age between 20 and 24 THEN '20-24岁' when age>=25 THEN '25岁及以上' else '其他' END age_cut from user_profile
0
点赞
评论
收藏
分享
2023-04-04 13:55
题解 | #计算25岁以上和以下的用户数量#
select case WHEN age>=25 THEN '25岁及以上' ELSE '25岁以下' end age_cut,count(*) number from user_profile group by age_cut
0
点赞
评论
收藏
分享
2023-04-04 12:50
题解 | #统计每个用户的平均刷题数#
select university,difficult_level,round(count(*)/count(distinct(t2.device_id)),4)avg_answer_cnt from question_detail t1 right join question_practice_detail t2 on (t1.question_id=t2.question_id) left join user_profile t3 on (t2.device_id=t3.device_id) group by university,d...
0
点赞
评论
收藏
分享
1
关注他的用户也关注了:
牛客网
牛客企业服务