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

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

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

select
    university,
    difficult_level,
    count(qpd.device_id) / count(DISTINCT qpd.question_id) as avg_answer_cnt
from
    user_profile up,
    question_practice_detail qpd,
    question_detail qd
where
    up.university = '山东大学' 
and 
    up.device_id = qpd.device_id
and
    qpd.question_id = qd.question_id
GROUP BY
    qd.difficult_level;

全部评论

相关推荐

02-26 09:15
已编辑
蚌埠学院 golang
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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