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

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

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

select user_profile.university as university,
       question_detail.difficult_level as difficult_level,
       count(question_practice_detail.question_id)/count(distinct question_practice_detail.device_id) as avg_answer_cnt
from 
    question_practice_detail 
    INNER JOIN user_profile ON user_profile.device_id = question_practice_detail.device_id 
    INNER JOIN question_detail ON question_detail.question_id = question_practice_detail.question_id 
where university = '山东大学'
group by difficult_level

注意子句顺序,group by 子句在where子句后面

全部评论

相关推荐

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

创作者周榜

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