题解 | #获取当前薪水第二多的员工的emp_no#

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

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

select
    a.emp_no,
    b.salary,
    a.last_name,
    a.first_name
from employees a
left join salaries b
on a.emp_no = b.emp_no
    where b.salary =
        (select max(c.salary)
        from
            (select salary
            from salaries
            where salary <
                (select
                max(salary)
                from employees a
                left join salaries b
                on a.emp_no = b.emp_no))c)

不准用orderby 有点麻

全部评论

相关推荐

02-25 19:38
门头沟学院 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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