题解 | #考试分数(五)#

考试分数(五)

https://www.nowcoder.com/practice/b626ff9e2ad04789954c2132c74c0512

select
    g.id,
    g.job,
    g.score,
    t_rank
from
    (
        select
            id,
            job,
            score,
            row_number() over (
                partition by
                    job
                order by
                    score DESC
            ) as t_rank
        from
            grade
    ) as g
    join (
        select
            job,
            floor((count(job) + 1) / 2) as t1,
            floor((count(job) + 2) / 2) as t2
        from
            grade
        group by
            job
    ) as tmp on g.job = tmp.job
where
    g.t_rank in (tmp.t1, tmp.t2)
order by
    id ASC

全部评论

相关推荐

02-22 21:16
已编辑
门头沟学院 运营
牛客928043833号:离了你谁还拿我当个宝
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务