Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Downtime Reasons by Region

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

Your question is Top Downtime Reasons by Region. 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

Tesla Operations uses service logs from Tesla Service Centers to identify the largest sources of downtime. Write a PostgreSQL query that returns the top three downtime reasons for the Pacific Northwest region.

Requirements

  1. Join service logs to the regions table using region_id.
  2. Consider only completed logs with a positive, non-null downtime_minutes value and a non-null downtime_reason.
  3. Aggregate total downtime minutes and log count for each reason in the Pacific Northwest.
  4. Rank the reasons by total downtime descending, breaking ties alphabetically, and return only ranks 1 through 3.

Schema

regions
ColumnTypeDescription
region_idPKINTEGERUnique operating region identifier
region_nameVARCHAR(100)Tesla operating region name
service_logs
ColumnTypeDescription
log_idPKINTEGERUnique service log identifier
region_idINTEGERReferences regions.region_id
downtime_reasonVARCHAR(100)Reason associated with the downtime
downtime_minutesINTEGERDuration of downtime in minutes
service_statusVARCHAR(30)Status of the service record
Tablesregionsservice_logs
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results