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 |