题解 | #查找所有员工自入职以来的薪水涨幅情况#
查找所有员工自入职以来的薪水涨幅情况
http://www.nowcoder.com/practice/fc7344ece7294b9e98401826b94c6ea5
salaries表中的时间信息已经隐含了刚进入公司时的工资,所以仅仅使用salaries一张表就可以查询出工资增长
select sal_early.emp_no, (now_sal-start_sal) as growth #第四步,从连接后的表中计算出工资增长 from ( select emp_no, salary start_sal from ( #第一步,利用窗口函数查询最初薪水 select *,row_number() over(partition by emp_no order by to_date) sal_num from salaries ) sn where sal_num = 1 ) sal_early join ( #第二步,查询当前薪水 select emp_no, salary now_sal from salaries where to_date = '9999-01-01' ) sal_late #第三步,连接表,新表包含工号emp_no,最初薪水sal_early,当前薪水sal_late三个字段 on sal_early.emp_no = sal_late.emp_no order by growth