Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Daily Rides by Vehicle

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

Your question is Top Daily Rides by Vehicle. 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

Waymo operations wants a daily leaderboard of the longest completed rides for each vehicle. Write a SQL query to return the top 3 rides per vehicle for each calendar day.

Requirements

  1. Use start_time to derive the ride date.
  2. Only include rides where status = 'completed' and distance_miles is not null.
  3. Rank rides within each (vehicle_id, ride_date) group by distance_miles descending.
  4. Break ties by earlier start_time, then smaller ride_id.
  5. Return only ranks 1 through 3.
  6. Include vehicle and depot details in the output.

Schema

vehicles
ColumnTypeDescription
vehicle_idPKINTUnique vehicle identifier
vehicle_nameVARCHAR(100)Display name for the vehicle
depot_idINTAssigned depot for the vehicle
depots
ColumnTypeDescription
depot_idPKINTUnique depot identifier
depot_nameVARCHAR(100)Depot name
rides
ColumnTypeDescription
ride_idPKINTUnique ride identifier
vehicle_idINTVehicle that served the ride
start_timeTIMESTAMPRide start timestamp
end_timeTIMESTAMPRide end timestamp
distance_milesDECIMAL(6,2)Ride distance in miles
statusVARCHAR(40)Ride status such as completed or canceled
Tablesridesvehiclesdepots
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results