Tags
- count
- M:N
- distinct
- Queue
- 트리
- 스택
- ORM
- DB
- 뷰
- update
- stack
- SQL
- N:1
- Article & User
- drf
- Vue
- 이진트리
- 통계학
- 백트래킹
- 완전검색
- 그리디
- delete
- outer join
- 쟝고
- regexp
- 큐
- create
- Tree
- Django
- migrations
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Notice
Recent Posts
Link
데이터 분석 기술 블로그
Employees Whose Manager Left the Company _ Easy. LeetCode 본문


Solution
SELECT e.employee_id
FROM Employees e
LEFT JOIN Employees m
ON e.manager_id = m.employee_id
WHERE (e.salary < 30000) AND
(e.manager_id IS NOT NULL AND m.employee_id IS NULL)
ORDER BY employee_id ASC;'SQL > 문제풀이' 카테고리의 다른 글
| Fix Names in a Table _ Easy. LeetCode * (0) | 2024.11.01 |
|---|---|
| Japan Population _ Easy. HackerRank (0) | 2024.10.31 |
| Average Population _ Easy. HackerRank (0) | 2024.10.29 |
| Triangle Judgement _ Easy. LeetCode (0) | 2024.10.28 |
| Revising Aggregations - Averages _ Easy. HackerRank (0) | 2024.10.27 |