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

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

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

select
    t1.exam_id as exam_id,
    count(distinct t1.uid) as uv,
    round(avg(t1.score), 1) as avg_score
from
    exam_record as t1
    inner join user_info as t2 on t1.uid = t2.uid
    inner join examination_info as t3 on t1.exam_id = t3.exam_id
where
    t2.level > 5
    and date_format (t3.release_time, '%Y%m%d') = date_format (t1.start_time, '%Y%m%d')
group by t1.exam_id
order by uv desc, avg_score asc;

全部评论

相关推荐

你背过凌晨4点的八股文么:简历挂了的话会是流程终止,像我一样
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务