题解 | 查找在职员工自入职以来的薪水涨幅情况

查找在职员工自入职以来的薪水涨幅情况

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

select
    t1.emp_no,
    (t2.salary - t1.salary) as growth
from
    (
        select
            e.emp_no,
            s.salary
        from
            employees e
            join salaries s on e.emp_no = s.emp_no
            and e.hire_date = s.from_date
    ) as t1
    join (
        select
            e.emp_no,
            s.salary
        from
            employees e
            join salaries s on e.emp_no = s.emp_no and s.to_date = '9999-01-01'
    ) as t2 on t1.emp_no = t2.emp_no
order by growth

全部评论

相关推荐

点赞 评论 收藏
分享
Twilight_m...:经典我朋友XXXX起手,这是那种经典的不知道目前行情搁那儿胡编乱造瞎指导的中年人,不用理这种**
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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