Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Production Performance
00:00
5 left

SQL for Production Performance

MediumSQL · PostgreSQL

Problem

Write a SQL query to analyze production performance by line, shift, and day, including output, waste, and downtime metrics at Stouffers. Use completed production runs and the provided line and shift reference data.

Output

  1. One row per line, shift, and production day with valid reference matches.
  2. Columns: line_name, shift_name, production_day, output_units, waste_units, downtime_minutes, and waste_percentage.
  3. Include totals for each combination, calculate waste as a percentage of output plus waste, and sort by line, shift, and day.

Schema

production_runs
ColumnTypeDescription
run_idPKINTUnique production run identifier
line_idINTProduction line identifier
shift_idINTShift identifier
production_timestampTIMESTAMPTimestamp when the run was recorded
output_unitsINTUnits produced during the run
waste_unitsINTUnits wasted during the run
downtime_minutesINTMinutes of downtime during the run
statusVARCHAR(20)Run status
production_lines
ColumnTypeDescription
line_idPKINTUnique production line identifier
line_nameVARCHAR(50)Production line name
facilityVARCHAR(80)Facility containing the line
shifts
ColumnTypeDescription
shift_idPKINTUnique shift identifier
shift_nameVARCHAR(30)Shift name
shift_startTIMEScheduled shift start time
Tablesproduction_runsproduction_linesshifts
Interviewer

Your question is SQL for Production Performance. Start with the requirements and the three tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.