리트코드 [Managers with at Least 5 Direct Reports]

윤태영·2024년 8월 31일
0

문제

https://leetcode.com/problems/managers-with-at-least-5-direct-reports/description/
5명 이상의 직속 부하 직원이 있는 관리자를 찾는 쿼리를 작성하세요.

Table : Employee

Example1

문제풀이

id 를 기준으로 managerId 가 id 랑 일치하면서 갯수가 5 이상인 사람의 name 조회

쿼리

SELECT A.name
FROM Employee A
INNER JOIN Employee B ON A.id = B.managerId
GROUP BY B.managerId
HAVING COUNT(B.managerId) >=5
profile
ice blue

0개의 댓글