Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rank Defect Rates by Plant
00:00
5 left

Rank Defect Rates by Plant

MediumSQL · PostgreSQL

Problem

Write a query to rank daily manufacturing defect rates by factory plant using ranking window functions at Bosch.

Calculate each plant's daily defect rate as defective units divided by produced units, treating NULL defect counts as zero. Rank plants within each production date from the highest defect rate to the lowest, excluding dates with zero total production units.

Output

  1. One row per plant and production date, with production_date, plant_id, plant_name, defect_rate_percent, and daily_rank.
  2. Rank ties equally, with the next rank reflecting the number of tied rows.
  3. Order by production_date, daily_rank, and plant_id.

Schema

plants
ColumnTypeDescription
plant_idPKINTUnique Bosch factory plant identifier
plant_codeVARCHAR(20)Short plant code
plant_nameVARCHAR(100)Factory plant name
countryVARCHAR(60)Country where the plant operates
production_runs
ColumnTypeDescription
run_idPKINTUnique production run identifier
plant_idINTPlant responsible for the production run
production_dateDATEDate of production
units_producedINTNumber of units produced in the run
defects_countINTNumber of defective units
Tablesplantsproduction_runs
Interviewer

Your question is Rank Defect Rates by Plant. Start with the requirements and the two 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.