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

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

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

select emp_no, s_1-s_0 as growth from (select s1.emp_no, salary as s_1 from salaries as s1 where to_date = '9999-01-01') as table0
left join(
select s2.emp_no, salary as s_0 from salaries as s2 where from_date in (select hire_date from employees)
) as table1
using(emp_no)
order by growth;

全部评论

相关推荐

黑皮白袜臭脚体育生:简历条例统一按使用了什么技术实现了什么功能解决了问题或提升了什么性能指标来写会好些,如使用布隆过滤器实现了判断短链接是否存在,大大提升了查询速度
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务