Your question is SQL for Recruitment Conversion by Department. 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.
UiPath People Operations wants to monitor how effectively each department converts applicants into hires. Write a PostgreSQL query that reports recruitment pipeline conversion by department for applications received during the first quarter of 2025.
| Column | Type | Description |
|---|---|---|
| department_idPK | INT | Unique department identifier |
| department_name | VARCHAR(100) | Department name |
| Column | Type | Description |
|---|---|---|
| application_idPK | INT | Unique application identifier |
| department_id | INT | Department receiving the application |
| applied_at | DATE | Date the application entered the recruitment pipeline |
| status | VARCHAR(30) | Current application pipeline status |