题解 | #统计每个学校各难度的用户平均刷题数#

统计每个学校各难度的用户平均刷题数

https://www.nowcoder.com/practice/5400df085a034f88b2e17941ab338ee8

select university,difficult_level,
    count(question_practice_detail.question_id)/count(distinct user_profile.device_id) 
        as avg_answer_cnt from 
            user_profile,question_practice_detail,question_detail
            where user_profile.device_id = 
                question_practice_detail.device_id and question_practice_detail.question_id = question_detail.question_id
                group by university, difficult_level

#sql练习日常##mysql#
全部评论

相关推荐

不愿透露姓名的神秘牛友
今天 10:48
点赞 评论 收藏
分享
点赞 评论 收藏
分享
22 7 评论
分享
牛客网
牛客企业服务