Level 3 - IntermediateDebugging Questions
Debugging: GROUP BY Non-Aggregated Column
Find and fix the error. SELECT department_id, employee_name, COUNT(*) AS team_size FROM employees GROUP BY department_id;
Schema Context
employees(id, employee_name, department_id)