Leetcode 1468题: Calculate Salaries

题目描述

首先这是一张原始表,包含公司id,员工id,员工名字,以及工资。
在这里插入图片描述
题目要求,将工资调整为税后工资。具体的税收标准为:
The tax rate is calculated for each company based on the following criteria:

0 If the max salary of any employee in the company is less than 1000 .
0.24 If the max salary of any employee in the company is in the range [1000, 10000] inclusive.
0.49 If the max salary of any employee in the company is greater than 10000.

Return the result table in any order. Round the salary to the nearest integer.

My Answer

大致思路就是先得到一张子表b用于记录每个公司的最高工资,然后将其与原始表合并,合并后的结果中每条数据对应的员工都有其对应公司的最高工资数据。然后将该最高工资作为case when的条件,对每个员工的工资进行税后调整,即✖️对应的税率。具体代码如下

select company_id,
       employee_id,
       employee_name,
       round((case when max_salary<1000 then salary       
                   when max_salary>=1000 and max_salary<=10000 then salary*(1-0.24)       
                   else salary*(1-0.49) end),0) as salary 
from  
(select a.*,max_salary from Salaries a left join  (select company_id,max(salary) max_salary from Salaries group by company_id) as b on a.company_id =b.company_id) as t;
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值