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

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

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

select
emp_no,
(max(salary) - min(salary)) growth
from (
    select
    s.emp_no,
    s.salary,
    s.to_date
    from salaries s
    where (s.emp_no, s.from_date) in (select e.emp_no, e.hire_date from employees e)
    or year(s.to_date) = 9999
) s1

group by emp_no
having (max(salary) - min(salary)) >= 0 and sum(year(to_date)) > 9999
order by growth asc

全部评论

相关推荐

darius_:我试了简历上有微服务和没微服务主动要简历的外包的比例都不一样,微服务稍微看看还是要写上去,人人都写你不写会被pass
点赞 评论 收藏
分享
我只是一个小白菜:我还用不惯m4,也是山猪吃不了细糠了
投递字节跳动等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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