题解 | #统计每个用户的平均刷题数# 第一次一次做对中等题

统计每个用户的平均刷题数

https://www.nowcoder.com/practice/f4714f7529404679b7f8909c96299ac4

正确解法:

select university, 
difficult_level,
count(a.question_id) / count(distinct a.device_id) as avg_answer_cnt
from question_practice_detail as a
left join user_profile as b on a.device_id=b.device_id
left join question_detail as c on a.question_id=c.question_id
where university = '山东大学'
group by difficult_level

和上一道题的思路差不多,主要是学会了三个表的left join,这道题就一次做出来了,激动!

#sql练习日常#
全部评论

相关推荐

04-03 22:39
重庆大学 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务