| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- delete join
- telegram
- docker image
- 빅데이터를 지탱하는 기술
- MySQL
- hackerrank
- data_engineer
- Python
- docker container
- 프로그래머스
- leetcode
- airflow architecture
- 알고리즘
- Dynamic Programming
- Airflow
- terraform
- 그리디
- SQL
- docker
- datacamp
- 백준 온라인 저지
- Spark
- 백준온라인저지
- Data Engineering
- BOT
- dsf
- 데이터 엔지니어
- airflow webserver
- Pseudo Lab
- 2023년 목표
Archives
- Today
- Total
Lim Seunghyun Space
[Leetcode] 181. Employees Earning More Than Their Managers 본문
SQL/SQL 문제
[Leetcode] 181. Employees Earning More Than Their Managers
Lim Seung Hyun 2022. 3. 23. 15:11문제 출처
Employees Earning More Than Their Managers - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
나의 풀이
select emp.name as Employee
from Employee as emp
join Employee as mgr on emp.managerId = mgr.id
where emp.salary > mgr.salary728x90
'SQL > SQL 문제' 카테고리의 다른 글
| [Leetcode] 183. Customers Who Never Order (0) | 2022.03.23 |
|---|---|
| [Leetcode] 182. Duplicate Emails (0) | 2022.03.23 |
| [HackerRank] Type of Triangle (0) | 2021.11.30 |
| [HackerRank] The PADS (0) | 2021.11.29 |
| [HackerRank] Employee Salaries (0) | 2021.11.22 |