题解 | 获取有奖金的员工相关信息。

select t1.emp_no
,first_name
,last_name
,btype
,salary
,round((case
            when btype=1 or btype=2 then salary*(btype/10)
        else salary*0.3
        end),1) bonus
from(select b.emp_no
    ,first_name
    ,last_name
    ,btype
    from emp_bonus b left join employees using(emp_no)) t1
    join
    (select emp_no
    ,sum(salary) salary
    from salaries
    where to_date='9999-01-01'
    group by emp_no ) t2
    on t1.emp_no = t2.emp_no



全部评论

相关推荐

不愿透露姓名的神秘牛友
2024-12-07 15:12
深信服 测试开发 18000x12 硕士211
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务