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

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

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

with t1 as (
    select emp_no, salary,
    lead(salary) over(partition by emp_no order by from_date) as salary2
    from employees join salaries using(emp_no)
    where emp_no in (select distinct emp_no from employees join salaries using(emp_no) where to_date = '9999-01-01')
)
select emp_no, sum(salary2 - salary) as growth from t1 group by emp_no order by growth

全部评论

相关推荐

05-20 21:57
已编辑
门头沟学院 Java
喜欢吃卤蛋的悲伤蛙在提需求:建信融通没消息吧,我2说有实习挂简历不理了
点赞 评论 收藏
分享
仁者伍敌:难怪小公司那么挑剔,让你们这些大佬把位置拿了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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