返回介绍

solution / 1400-1499 / 1468.Calculate Salaries / README_EN

发布于 2024-06-17 01:03:19 字数 3889 浏览 0 评论 0 收藏 0

1468. Calculate Salaries

中文文档

Description

Table Salaries:

+---------------+---------+
| Column Name   | Type  |
+---------------+---------+
| company_id  | int   |
| employee_id   | int   |
| employee_name | varchar |
| salary    | int   |
+---------------+---------+
In SQL,(company_id, employee_id) is the primary key for this table.
This table contains the company id, the id, the name, and the salary for an employee.

 

Find the salaries of the employees after applying taxes. Round the salary to the nearest integer.

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.
  • 24% If the max salary of any employee in the company is in the range [1000, 10000] inclusive.
  • 49% If the max salary of any employee in the company is greater than $10000.

Return the result table in any order.

The result format is in the following example.

 

Example 1:

Input: 
Salaries table:
+------------+-------------+---------------+--------+
| company_id | employee_id | employee_name | salary |
+------------+-------------+---------------+--------+
| 1      | 1       | Tony      | 2000   |
| 1      | 2       | Pronub    | 21300  |
| 1      | 3       | Tyrrox    | 10800  |
| 2      | 1       | Pam       | 300  |
| 2      | 7       | Bassem    | 450  |
| 2      | 9       | Hermione    | 700  |
| 3      | 7       | Bocaben     | 100  |
| 3      | 2       | Ognjen    | 2200   |
| 3      | 13      | Nyancat     | 3300   |
| 3      | 15      | Morninngcat   | 7777   |
+------------+-------------+---------------+--------+
Output: 
+------------+-------------+---------------+--------+
| company_id | employee_id | employee_name | salary |
+------------+-------------+---------------+--------+
| 1      | 1       | Tony      | 1020   |
| 1      | 2       | Pronub    | 10863  |
| 1      | 3       | Tyrrox    | 5508   |
| 2      | 1       | Pam       | 300  |
| 2      | 7       | Bassem    | 450  |
| 2      | 9       | Hermione    | 700  |
| 3      | 7       | Bocaben     | 76   |
| 3      | 2       | Ognjen    | 1672   |
| 3      | 13      | Nyancat     | 2508   |
| 3      | 15      | Morninngcat   | 5911   |
+------------+-------------+---------------+--------+
Explanation: 
For company 1, Max salary is 21300. Employees in company 1 have taxes = 49%
For company 2, Max salary is 700. Employees in company 2 have taxes = 0%
For company 3, Max salary is 7777. Employees in company 3 have taxes = 24%
The salary after taxes = salary - (taxes percentage / 100) * salary
For example, Salary for Morninngcat (3, 15) after taxes = 7777 - 7777 * (24 / 100) = 7777 - 1866.48 = 5910.52, which is rounded to 5911.

Solutions

Solution 1

# Write your MySQL query statement below
SELECT
  s.company_id,
  employee_id,
  employee_name,
  ROUND(
    CASE
      WHEN top < 1000 THEN salary
      WHEN top >= 1000
      AND top <= 10000 THEN salary * 0.76
      ELSE salary * 0.51
    END
  ) AS salary
FROM
  Salaries AS s
  JOIN (
    SELECT company_id, MAX(salary) AS top
    FROM Salaries
    GROUP BY company_id
  ) AS t
    ON s.company_id = t.company_id;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文