Skip to content

Commit 63b1cc5

Browse files
committed
added new join manager with a least 5 rsports
1 parent e5edc91 commit 63b1cc5

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

BASIC AGGREGATION FUNCTION/1211. Queries Quality and Percentage.sql

Whitespace-only changes.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Write your MySQL query statement below
2+
SELECT e1.name
3+
FROM Employee e1 INNER JOIN Employee e2 ON
4+
e1.id = e2.managerId
5+
GROUP BY e2.managerId
6+
HAVING COUNT(e2.managerId) >= 5;

0 commit comments

Comments
 (0)