SELECT department.dept_name, COUNT(employee.emp_id) AS emp_count
FROM department KEY JOIN employee
GROUP BY department.dept_name