[185] Department Top Three Salaries

2022. 5. 26. 02:41·SQL/LeetCode

1. 문제 설명 

 

Table: Employee

+--------------+---------+
| Column Name  | Type    |
+--------------+---------+
| id           | int     |
| name         | varchar |
| salary       | int     |
| departmentId | int     |
+--------------+---------+
id is the primary key column for this table.
departmentId is a foreign key 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 for this table.
Each row of this table indicates the ID of a department and its name.

 

A company's executives are interested in seeing who earns the most money in each of the company's departments. A high earner in a department is an employee who has a salary in the top three unique salaries for that department.

Write an SQL query to find the employees who are high earners in each of the departments.

Return the result table in any order.

 

2. 정답 예시 

Example 1:

Input: 
Employee table:
+----+-------+--------+--------------+
| id | name  | salary | departmentId |
+----+-------+--------+--------------+
| 1  | Joe   | 85000  | 1            |
| 2  | Henry | 80000  | 2            |
| 3  | Sam   | 60000  | 2            |
| 4  | Max   | 90000  | 1            |
| 5  | Janet | 69000  | 1            |
| 6  | Randy | 85000  | 1            |
| 7  | Will  | 70000  | 1            |
+----+-------+--------+--------------+
Department table:
+----+-------+
| id | name  |
+----+-------+
| 1  | IT    |
| 2  | Sales |
+----+-------+
Output: 
+------------+----------+--------+
| Department | Employee | Salary |
+------------+----------+--------+
| IT         | Max      | 90000  |
| IT         | Joe      | 85000  |
| IT         | Randy    | 85000  |
| IT         | Will     | 70000  |
| Sales      | Henry    | 80000  |
| Sales      | Sam      | 60000  |
+------------+----------+--------+
Explanation: 
In the IT department:
- Max earns the highest unique salary
- Both Randy and Joe earn the second-highest unique salary
- Will earns the third-highest unique salary

In the Sales department:
- Henry earns the highest salary
- Sam earns the second-highest salary
- There is no third-highest salary as there are only two employees

-> 해당 결과를 보면 IT부서에서 총 4명의 고소득자가 나옴. 이에 DENSE_RANK()를 사용해야한다 판단됨. 

 

3. 정답 쿼리 (MySQL)

SELECT Department, Employee, Salary
FROM (
    SELECT d.name AS Department
         , e.name AS Employee
         , e.salary AS Salary
         , DENSE_RANK() OVER (PARTITION BY d.id ORDER BY e.salary DESC) AS rn
    FROM Employee e
         INNER JOIN Department d ON e.departmentId = d.id
) df
WHERE rn <= 3

결과 

{"headers": ["Department", "Employee", "Salary"], "values": [["IT", "Max", 90000], ["IT", "Joe", 85000], ["IT", "Randy", 85000], ["IT", "Will", 70000], ["Sales", "Henry", 80000], ["Sales", "Sam", 60000]]}

'SQL > LeetCode' 카테고리의 다른 글

[STUDY_PALN] DAY1  (0) 2022.06.04
[177] Nth Highest Salary  (0) 2022.06.03
[180] Consecutive Numbers  (0) 2022.05.29
[196] Delete Duplicate Emails  (0) 2022.05.28
[184] Department Highest Salary  (0) 2022.05.22
'SQL/LeetCode' 카테고리의 다른 글
  • [177] Nth Highest Salary
  • [180] Consecutive Numbers
  • [196] Delete Duplicate Emails
  • [184] Department Highest Salary
소금깨
소금깨
  • 소금깨
    고군분투 인생살이
    소금깨
  • 전체
    오늘
    어제
    • 분류 전체보기 (328)
      • SQL (271)
        • 프로그래머스 (27)
        • LeetCode (198)
        • Hacker Rank (27)
        • Solve SQL (1)
        • 개념 (15)
      • 데이터 분석 (16)
        • 참고하며 공부하기 (14)
      • 기타 (15)
        • 통계 (14)
      • 오류 (6)
      • 인생살이 (0)
        • 리뷰 (0)
        • 일기 (0)
      • 中文 (0)
      • TABLEAU (3)
  • 블로그 메뉴

    • 홈
    • 태그
    • 방명록
  • 링크

  • 공지사항

  • 인기 글

  • 태그

    프리미엄
    solvesql
    파이썬을활용한시계열데이터분석
    패스트캠퍼스후기
    Hard
    MySQL
    SQL
    직장인자기계발
    LeetCode
    패캠챌린지
    패스트캠퍼스
    프로그래머스
    easy
    HACKER_RANK
    시계열데이터분석
    group by
    직장인인강
    medium
    해커랭크
    파이썬을활용한시계열데이터분석AtoZ올인원패키지Online
  • 최근 댓글

  • 최근 글

  • hELLO· Designed By정상우.v4.10.3
소금깨
[185] Department Top Three Salaries
상단으로

티스토리툴바