题解 | 获取当前薪水第二多的员工的emp_no以及其对应的薪水salary

获取当前薪水第二多的员工的emp_no以及其对应的薪水salary

https://www.nowcoder.com/practice/8d2c290cc4e24403b98ca82ce45d04db

select
    emp_no,
    salary
from
    (
        select
            *,
            dense_rank() over (
                order by
                    salary desc
            ) as ranking from salaries
    ) as t1
where
    ranking = 2
order by
    emp_no

先排序再筛选 使用窗口函数+子查询

全部评论

相关推荐

10-01 09:50
门头沟学院 Java
肖先生~:这个人真的很好,点赞
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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