题解 | #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
全部评论

相关推荐

不吃牛肉的选手在刷面试经:首先,你数过吗?其次,他知道吗?最后,你说了他信吗?
点赞 评论 收藏
分享
Yki_:以下条件优先录用: 喜欢去缅北当猪仔的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务