Your question is Employees Per Department Query. Start with the requirements and the two tables on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Auto-Owners Insurance maintains department and employee records for internal workforce reporting. Write a PostgreSQL query that returns the total number of employees assigned to each department.
| Column | Type | Description |
|---|---|---|
| department_idPK | INT | Unique department identifier |
| department_name | VARCHAR(100) | Department name |
| Column | Type | Description |
|---|---|---|
| employee_idPK | INT | Unique employee identifier |
| employee_name | VARCHAR(100) | Employee's name |
| department_id | INT | Assigned department identifier |
| employment_status | VARCHAR(20) | Current employment status |