Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Aggregate Drives From Telematics

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

Your question is Aggregate Drives From Telematics. Start with the requirements and the three 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

Geotab analysts need a monthly view of completed fleet drives from telematics data. Write a PostgreSQL query that aggregates qualifying drives for active vehicles during Q1 2025.

Requirements

  1. Exclude inactive vehicles, cancelled drives, and drives outside Q1 2025.
  2. Return monthly drive count, total distance, average duration, and safety-event count for each vehicle.
  3. Calculate safety events per 100 km, returning NULL when total distance is zero.
  4. Use a window function to show each vehicle's prior reported monthly distance, percentage change, and rank within its region and month.
  5. Include vehicles with no safety events through an appropriate join, and order results by region, month, and regional rank.

Schema

vehicles
ColumnTypeDescription
vehicle_idPKINTUnique vehicle identifier
vehicle_nameVARCHAR(100)Fleet vehicle name
regionVARCHAR(50)Operating region
statusVARCHAR(20)Vehicle lifecycle status
drives
ColumnTypeDescription
drive_idPKINTUnique drive identifier
vehicle_idINTVehicle associated with the drive
started_atTIMESTAMPDrive start timestamp
ended_atTIMESTAMPDrive end timestamp
distance_kmNUMERIC(10,2)Distance traveled in kilometers
drive_statusVARCHAR(20)Drive processing status
safety_events
ColumnTypeDescription
event_idPKINTUnique safety-event identifier
drive_idINTDrive associated with the event
event_typeVARCHAR(40)Safety event classification
Tablesvehiclesdrivessafety_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results