返回介绍

solution / 0100-0199 / 0184.Department Highest Salary / README_EN

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

184. Department Highest Salary

中文文档

Description

Table: Employee

+--------------+---------+
| Column Name  | Type  |
+--------------+---------+
| id       | int   |
| name     | varchar |
| salary     | int   |
| departmentId | int   |
+--------------+---------+
id is the primary key (column with unique values) for this table.
departmentId is a foreign key (reference columns) of the ID from the Department table.
Each row of this table indicates the ID, name, and salary of an employee. It also contains the ID of their department.

 

Table: Department

+-------------+---------+
| Column Name | Type  |
+-------------+---------+
| id      | int   |
| name    | varchar |
+-------------+---------+
id is the primary key (column with unique values) for this table. It is guaranteed that department name is not NULL.
Each row of this table indicates the ID of a department and its name.

 

Write a solution to find employees who have the highest salary in each of the departments.

Return the result table in any order.

The result format is in the following example.

 

Example 1:

Input: 
Employee table:
+----+-------+--------+--------------+
| id | name  | salary | departmentId |
+----+-------+--------+--------------+
| 1  | Joe   | 70000  | 1      |
| 2  | Jim   | 90000  | 1      |
| 3  | Henry | 80000  | 2      |
| 4  | Sam   | 60000  | 2      |
| 5  | Max   | 90000  | 1      |
+----+-------+--------+--------------+
Department table:
+----+-------+
| id | name  |
+----+-------+
| 1  | IT  |
| 2  | Sales |
+----+-------+
Output: 
+------------+----------+--------+
| Department | Employee | Salary |
+------------+----------+--------+
| IT     | Jim    | 90000  |
| Sales    | Henry  | 80000  |
| IT     | Max    | 90000  |
+------------+----------+--------+
Explanation: Max and Jim both have the highest salary in the IT department and Henry has the highest salary in the Sales department.

Solutions

Solution 1: Equi-Join + Subquery

We can use an equi-join to join the Employee table and the Department table based on Employee.departmentId = Department.id, and then use a subquery to find the highest salary for each department. Finally, we can use a WHERE clause to filter out the employees with the highest salary in each department.

# Write your MySQL query statement below
SELECT d.name AS department, e.name AS employee, salary
FROM
  Employee AS e
  JOIN Department AS d ON e.departmentId = d.id
WHERE
  (d.id, salary) IN (
    SELECT departmentId, MAX(salary)
    FROM Employee
    GROUP BY 1
  );

Solution 2: Equi-Join + Window Function

We can use an equi-join to join the Employee table and the Department table based on Employee.departmentId = Department.id, and then use the window function rank(), which assigns a rank to each employee in each department based on their salary. Finally, we can select the rows with a rank of $1$ for each department.

# Write your MySQL query statement below
WITH
  T AS (
    SELECT
      d.name AS department,
      e.name AS employee,
      salary,
      RANK() OVER (
        PARTITION BY d.name
        ORDER BY salary DESC
      ) AS rk
    FROM
      Employee AS e
      JOIN Department AS d ON e.departmentId = d.id
  )
SELECT department, employee, salary
FROM T
WHERE rk = 1;

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

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

发布评论

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