Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Contributors to Diagnostic Trouble Codes

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

Your question is Top Contributors to Diagnostic Trouble Codes. 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

General Motors needs to identify vehicle models contributing the most diagnostic trouble codes in a large sensor database. Write a PostgreSQL query that aggregates diagnostic events for January 2024 and returns the top three models.

Requirements

  1. Join vehicles to diagnostic events while preserving vehicles with no matching events during the date range.
  2. Use conditional aggregation to count Critical and Warning events separately, along with total events, affected vehicles, and distinct non-null DTC codes.
  3. Exclude models with no in-range events, rank the remaining models by total events descending, and return the top three with deterministic ordering.

Schema

vehicles
ColumnTypeDescription
vehicle_idPKINTUnique vehicle identifier
modelVARCHAR(80)General Motors vehicle model
diagnostic_events
ColumnTypeDescription
event_idPKINTUnique diagnostic event identifier
vehicle_idINTVehicle associated with the event
dtc_codeVARCHAR(20)Diagnostic trouble code
severityVARCHAR(20)Diagnostic event severity
event_timestampTIMESTAMPTimestamp when the event was recorded
Tablesvehiclesdiagnostic_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results