题解 | #统计复旦用户8月练题情况#

统计复旦用户8月练题情况

https://www.nowcoder.com/practice/53235096538a456b9220fce120c062b3

select up.device_id,up.university,count(q.device_id) question_cnt,sum(if(result = 'right',1,0)) right_question_cnt
from user_profile up
left join question_practice_detail q
on up.device_id=q.device_id 
where up.university='复旦大学' and (date like '2021-08-%' or date is null)
group by up.device_id;
这个题目有难度,如果直接用date是8月份去筛选的话,没有答题的同学会被忽略,下面这种解法也很好:
select up.device_id,up.university,count(q.device_id) question_cnt,sum(if(result = 'right',1,0)) right_question_cnt
from user_profile up
left join question_practice_detail q
on up.device_id=q.device_id and date like '2021-08-%'
where up.university='复旦大学'  
group by up.device_id;

全部评论

相关推荐

11-01 08:48
门头沟学院 C++
伤心的候选人在吵架:佬你不要的,能不能拿户口本证明过户给我。。球球了
点赞 评论 收藏
分享
霁华Tel:秋招结束了,好累。我自编了一篇对话,语言别人看不懂,我觉得有某种力量在控制我的身体,我明明觉得有些东西就在眼前,但身边的人却说啥也没有,有神秘人通过电视,手机等在暗暗的给我发信号,我有时候会突然觉得身体的某一部分不属于我了。面对不同的人或场合,我表现出不一样的自己,以至于都不知道自己到底是什么样子的人。我觉得我已经做的很好,不需要其他人的建议和批评,我有些时候难以控制的兴奋,但是呼吸都让人开心。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务