Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for Recruitment Conversion by Department

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

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.

You need to log in / sign up to run or submit.

Problem

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.

Requirements

  1. Return every department, including departments with no qualifying applications.
  2. Show total applications, hired applications, and the conversion rate as a percentage, calculated as hired applications divided by total applications.
  3. Treat missing or non-hired statuses as not hired, avoid division-by-zero errors, and sort by conversion rate descending, with departments without applications last.

Schema

departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
applications
ColumnTypeDescription
application_idPKINTUnique application identifier
department_idINTDepartment receiving the application
applied_atDATEDate the application entered the recruitment pipeline
statusVARCHAR(30)Current application pipeline status
Tablesdepartmentsapplications
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results