GROUP BY Syntax
SELECT department_id, COUNT(*) FROM employees GROUP BY department_id;This groups employees by department and counts them.
SELECT department_id, COUNT(*) FROM employees GROUP BY department_id;This groups employees by department and counts them.