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

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

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

全部评论

相关推荐

理智的芭乐在查重:这边男朋友还有hc吗
点赞 评论 收藏
分享
09-14 17:23
门头沟学院
故事和酒66:所以说副业很重要,程序员干到40岁,再怎么也赚300万了,吃吃利息也够活下去
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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