코린이의 소소한 공부노트

[LeetCode/Easy] 181. Employees Earning More Than Their Managers 본문

코딩테스트 풀이/SQL

[LeetCode/Easy] 181. Employees Earning More Than Their Managers

무지맘 2023. 3. 14. 16:02

1. Input

1) Employee table (primary key: id)

 

2. Output

1) 자신의 매니저보다 월급을 많이 받는 사람의 이름은 담은 테이블 반환

- 순서는 상관 없다.

- 반환하는 테이블의 칼럼명은 Employee로 한다.

 

3. Example

Input:

Output:

 

4. Code

1) 첫 코드(2023/03/14)

select a.name AS Employee
from Employee a, employee b
where a.managerId=b.id and a.salary>b.salary