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

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

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


select e.university,e.difficult_level,(count(e.difficult_level)/count(distinct e.question_id))
from
(
select c.question_id,c.result,c.university,d.difficult_level
from
(select a.device_id,a.question_id,a.result,b.university
from
question_practice_detail a
left join
user_profile b
on a.device_id=b.device_id
where b.university='山东大学')c
join
question_detail d
on c.question_id=d.question_id)e
group by
e.difficult_level
order by (count(e.difficult_level)/count(distinct e.question_id)) desc

全部评论
楼主,好像最后一句order by (...)去掉就对了
点赞 回复 分享
发布于 2023-03-08 22:46 北京

相关推荐

10-24 13:36
门头沟学院 Java
Zzzzoooo:更新:今天下午有hr联系我去不去客户端,拒了
点赞 评论 收藏
分享
2 1 评论
分享
牛客网
牛客企业服务