Skip to content

Commit eb4a524

Browse files
authored
Create 1303-find-the-team-size.sql
1 parent 83d3835 commit eb4a524

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

1303-find-the-team-size.sql

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Write your MySQL query statement below
2+
SELECT employee_id,
3+
COUNT(team_id) OVER(PARTITION BY team_id) AS team_size
4+
FROM Employee;

0 commit comments

Comments
 (0)