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

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

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


select 
    min(score)
from (
    select 
        score,
        avg(score) over() as average,
        (score - avg(score) over()) as min_score_over_avg
    from (select exam_id, tag from examination_info where tag='SQL') a 
    inner join (select * from exam_record where score is not null) b
    on a.exam_id =b.exam_id ) c
where min_score_over_avg >= 0


全部评论

相关推荐

我已成为0offer的糕手:别惯着,胆子都是练出来的,这里认怂了,那以后被裁应届被拖工资还敢抗争?
点赞 评论 收藏
分享
ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务