题解 | #得分不小于平均分的最低分#

得分不小于平均分的最低分

https://www.nowcoder.com/practice/3de23f1204694e74b7deef08922805b2

/*
1、利用窗口函数对exam_id进行分区,并求出每个分区的平均年得分;
2、以1的计算结果为子表,对子表使用where进行过滤,得到score大于均值的数据,并通过min函数取最小值
*/
select 
    min(score) as min_score_over_avg
from
    (select 
        e.score,avg(e.score) over(partition by e.exam_id) as avg_score
    from exam_record as e left join examination_info as ei on e.exam_id=ei.exam_id 
    where tag='SQL') as tmp
where score >= avg_score

全部评论

相关推荐

09-01 21:40
已编辑
同济大学 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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