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

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

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

全部评论

相关推荐

熊大不大:微信也是华为旗下吧,我看我朋友也是华为工牌写wx
点赞 评论 收藏
分享
09-22 15:45
门头沟学院 Java
谁给娃offer我给...:我也遇到了,我说只要我通过面试我就去,实际上我根本就不会去😁
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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