返回介绍

solution / 1800-1899 / 1875.Group Employees of the Same Salary / README_EN

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

1875. Group Employees of the Same Salary

中文文档

Description

Table: Employees

+-------------+---------+
| Column Name | Type  |
+-------------+---------+
| employee_id | int   |
| name    | varchar |
| salary    | int   |
+-------------+---------+
employee_id is the column with unique values for this table.
Each row of this table indicates the employee ID, employee name, and salary.

 

A company wants to divide the employees into teams such that all the members on each team have the same salary. The teams should follow these criteria:

  • Each team should consist of at least two employees.
  • All the employees on a team should have the same salary.
  • All the employees of the same salary should be assigned to the same team.
  • If the salary of an employee is unique, we do not assign this employee to any team.
  • A team's ID is assigned based on the rank of the team's salary relative to the other teams' salaries, where the team with the lowest salary has team_id = 1. Note that the salaries for employees not on a team are not included in this ranking.

Write a solution to get the team_id of each employee that is in a team.

Return the result table ordered by team_id in ascending order. In case of a tie, order it by employee_id in ascending order.

The result format is in the following example.

 

Example 1:

Input: 
Employees table:
+-------------+---------+--------+
| employee_id | name  | salary |
+-------------+---------+--------+
| 2       | Meir  | 3000   |
| 3       | Michael | 3000   |
| 7       | Addilyn | 7400   |
| 8       | Juan  | 6100   |
| 9       | Kannon  | 7400   |
+-------------+---------+--------+
Output: 
+-------------+---------+--------+---------+
| employee_id | name  | salary | team_id |
+-------------+---------+--------+---------+
| 2       | Meir  | 3000   | 1     |
| 3       | Michael | 3000   | 1     |
| 7       | Addilyn | 7400   | 2     |
| 9       | Kannon  | 7400   | 2     |
+-------------+---------+--------+---------+
Explanation: 
Meir (employee_id=2) and Michael (employee_id=3) are in the same team because they have the same salary of 3000.
Addilyn (employee_id=7) and Kannon (employee_id=9) are in the same team because they have the same salary of 7400.
Juan (employee_id=8) is not included in any team because their salary of 6100 is unique (i.e. no other employee has the same salary).
The team IDs are assigned as follows (based on salary ranking, lowest first):
- team_id=1: Meir and Michael, a salary of 3000
- team_id=2: Addilyn and Kannon, a salary of 7400
Juan's salary of 6100 is not included in the ranking because they are not on a team.

Solutions

Solution 1

# Write your MySQL query statement below
WITH
  S AS (
    SELECT salary
    FROM Employees
    GROUP BY salary
    HAVING COUNT(1) > 1
  ),
  T AS (
    SELECT salary, ROW_NUMBER() OVER (ORDER BY salary) AS team_id
    FROM S
  )
SELECT e.*, t.team_id
FROM
  Employees AS e
  JOIN T AS t ON e.salary = t.salary
ORDER BY 4, 1;

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

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

发布评论

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