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

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

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

select
a.emp_no,
a.salary-b.salary as growth
from
(select emp_no,
salary
from
salaries
where
to_date="9999-01-01"
)a
inner join
( select emp_no,
salary,
from_date
from
salaries
where
to_date="9999-01-01"
)b
on a.emp_no=b.emp_no
inner join
(
select emp_no,
hire_date
from
employees
)c
on b.emp_no=c.emp_no and b.from_date=c.hire_date
order by growth asc

全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务