题解 | #统计每个学校的答过题的用户的平均答题数#

统计每个学校的答过题的用户的平均答题数

https://www.nowcoder.com/practice/88aa923a9a674253b861a8fa56bac8e5

select
    c.university,
    sum(c.ansNum) / count(c.ansNum) as avg_answer_cnt
from
    (
        select
            a.university,
            count(*) ansNum
        from
            user_profile a
            join question_practice_detail b on a.device_id = b.device_id
        group by
            a.university,
            a.device_id
    ) c
group by
    c.university
order by
    c.university asc

全部评论

相关推荐

点赞 评论 收藏
分享
强大的马里奥:不太可能,我校计算机硕士就业率99%
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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