Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for Underperforming Work Centers

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

Your question is SQL for Underperforming Work Centers. Start with the requirements and the one table 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

Given a table of operational output, how would you write a query to identify the top three underperforming work centers over a specific period?

Use January 2025 as the period. Underperformance is measured as total target units minus total actual units, and NULL actual values should count as zero.

Output

  1. Return one row per underperforming work center with work_center_id, work_center_name, total_target, total_output, and shortfall_units.
  2. Include only work centers with a positive shortfall, ordered by shortfall_units descending, with work_center_id ascending as the tie-breaker.
  3. Return only the top three rows.

Schema

operational_output
ColumnTypeDescription
output_idPKINTUnique operational output record identifier
work_center_idINTIdentifier of the work center
work_center_nameVARCHAR(100)Name of the work center
work_dateDATEDate of the operational output
target_unitsINTUnits targeted for the work center on the date
actual_unitsINTUnits actually produced on the date
Tablesoperational_output
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results