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

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

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

select
  university,
  difficult_level,
  sum(date) / count(u.device_id) avg_answer_cnt
from
  (
    select
      *
    from
      user_profile
    where
      university = '山东大学'
  ) u,
  (
    select
      device_id,
      COUNT(a.question_id) date,
      difficult_level
    from
      question_practice_detail a,
      question_detail b
    where
      a.question_id = b.question_id
    group by
      device_id,
      difficult_level
  ) p
where
  u.device_id = p.device_id
group by
  difficult_level;
全部评论

相关推荐

不愿透露姓名的神秘牛友
05-01 13:13
ecece:这么明目张胆虚报就业率啊
点赞 评论 收藏
分享
小浪_Coding:个人技能一条测试没有
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务