250x250
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 | 31 |
Tags
- 백준#BOJ#14501#퇴사#브루트포스
- 백준#BOJ#1939#중량제한
- 백준#BOJ#2615#오목
- 백준#boj#12755
- 백준#boj#16932#모양만들기
- 백준#BOJ#8012#한동이는영업사원
- 백준#BOJ#12865#평범한배낭
Archives
- Today
- Total
순간을 성실히, 화려함보단 꾸준함을
184. Department Highest Salary 본문
https://leetcode.com/problems/department-highest-salary/
1) Employee 테이블에서 departmentId 별로 group by 를 실행해준다.
2) group by 한 테이블에서 max(salary) 와 departmentId 값을 뽑아서 온다.
3) 새로운 Employee 테이블과 max(salary) 를 뽑아가지고 온 테이블을 wherer 절로
E1.salary = E2.salary AND E1.departmentId = E2.departmentId 를 해준다.
그러면 각 그룹별로 salary가 최대인 사원들이 '다수' 뽑혀서 나온다.
4) Department 테이블에서 id 와 위에서 처리한 테이블의 departmentId 를 비교해 줘서 같은 애들만 출력해 준다.
/* Write your PL/SQL query statement below */
select D.name Department,E.name Employee,E.salary Salary
from Department D join (
select E1.departmentId,E1.name,E2.salary
from Employee E1,(
select departmentId,max(salary) salary
from Employee
group by departmentId
)E2
where E1.salary=E2.salary and E1.departmentId=E2.departmentId
)E on D.id=E.departmentId;
'알고리즘,SQL > leetcode' 카테고리의 다른 글
[leetcode] 1456. Maximum Number of Vowels in a Substring of Given Length (0) | 2023.05.05 |
---|