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

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

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

select 
    university, 
    difficult_level,
    count(t2.question_id) / count(distinct t2.device_id)
from 
    user_profile t1, question_practice_detail t2, question_detail t3
where 
    t1.device_id = t2.device_id 
    and
    t2.question_id = t3.question_id
    and t1.university = '山东大学'
group by t3.difficult_level
这里和前两个题目一样。
1.首先我们先将三张表连接起来from t1,t2,t3
2.然后选择山东大学的用户 where university = '山东大学'
3.然后在按照题目难度分组 group by difficult_level
4.最后在计算平均大题次数 count
全部评论

相关推荐

05-07 19:10
已编辑
中国科学技术大学 C++
silly01:现在先去 momenta,8-9月去鹅找日常实习,八股文算法背好了你这随便进。不过建议补充一下后端知识,MySQL、Redis看下八股,再补个6824,加点go后台的技术栈,9月随便进大厂。CPP后端只能来WXG
点赞 评论 收藏
分享
06-03 15:32
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务