题解 | #SQL类别高难度试卷得分的截断平均值#

SQL类别高难度试卷得分的截断平均值

http://www.nowcoder.com/practice/a690f76a718242fd80757115d305be45

select 
    tag,
    difficulty,
    round(avg(score), 1) as clip_avg_score
from 
    (select 
        t2.tag as tag,
        t2.difficulty as difficulty,
        t1.exam_id as exam_id,
        t1.score as score,
        rank() over(order by t1.score) as rk1,
        rank() over(order by t1.score desc) as rk2
    from exam_record as t1
    inner join examination_info as t2
    on t1.exam_id=t2.exam_id
    where t2.tag='SQL' and t2.difficulty='hard' and t1.score is not null) as t
where rk1 <> 1 and rk2 <> 1
group by tag
全部评论

相关推荐

06-16 15:04
黑龙江大学 Java
零OFFER战士:另一个版本查看图片
点赞 评论 收藏
分享
机械打工仔:我来告诉你原因,是因为sobb有在线简历,有些HR为了快会直接先看在线简历,初步感觉不合适就不会找你要详细的了
投了多少份简历才上岸
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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