题解 | #试卷发布当天作答人数和平均分#

试卷发布当天作答人数和平均分

https://www.nowcoder.com/practice/5b58e89556dc4153a79d8cf8c08ba499

select exam_id, count(distinct uid) uv,round(avg(score),1) avg_score
from
(
select a.uid,b.exam_id,score
from user_info a,examination_info b,exam_record c 
where a.uid = c.uid
and b.exam_id = c.exam_id
and date(c.start_time) = date(b.release_time)
and tag = 'SQL'
and level > 5
and submit_time is not null
) d
group by exam_id
order by uv desc,avg_score;

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

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