Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- join
- 다시풀어보기
- SQL
- group by
- Hard
- 프로그래머스
- 패캠챌린지
- Hackerrank
- MySQL
- lv.4
- 프리미엄
- recursive
- solvesql
- LeetCode
- easy
- 파이썬을활용한시계열데이터분석
- RANK
- 해커랭크
- medium
- 패스트캠퍼스후기
- 파이썬을활용한시계열데이터분석AtoZ올인원패키지Online
- SELF-JOIN
- 어려웠음
- row_number
- 직장인인강
- 패스트캠퍼스
- 직장인자기계발
- meidum
- HACKER_RANK
- 시계열데이터분석
Archives
- Today
- Total
~고군분투 인생살이~
[185_HARD] Department Top Three Salaries 본문
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.
The query result format is in the following example.
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
문제 조건
각 부서의 고소득자(해당 부서의 급여 상위 3위에 드는 직원)를 출력하시오.
문제 풀이
with temp as (select d.name as Department,
e.name as Employee,
e.salary as Salary,
dense_rank() over(partition by e.departmentId order by salary desc) as salary_rnk
from employee e
join department d on e.departmentID = d.id )
select Department,
Employee,
Salary
from temp
where salary_rnk <= 3
'SQL > LEETCODE' 카테고리의 다른 글
[1596#_MEDIUM] The Most Frequently Ordered Products for Each Customer (0) | 2022.08.18 |
---|---|
[1555#_MEDIUM] Bank Account Summary (0) | 2022.08.18 |
[1549#_MEDIUM] The Most Recent Orders for Each Product (0) | 2022.08.17 |
[1532#_MEDIUM] The Most Recent Three Orders (0) | 2022.08.17 |
[1501#_MEDIUM] Countries You Can Safely Invest In (0) | 2022.08.17 |
Comments