1303. Find the Team Size ¶ SQL 1 2 3 4SELECT employee_id, COUNT(*) OVER(PARTITION BY team_id) AS team_size FROM Employee;