Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Routes Per Driver With Ranking

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

Your question is Top Routes Per Driver With Ranking. 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

Arity Drive analysts need to identify the routes most frequently completed by each driver. Write a PostgreSQL query that aggregates completed trips by driver and route, ranks routes within each driver, and returns the top three ranked routes.

Requirements

  1. Join drivers to trip_events using driver_id.
  2. Consider only events where event_type = 'trip_completed' and both route zones are present.
  3. Count trips for each driver and origin-destination route, then use a ranking window function to return ranks 1 through 3. Keep tied routes at the same rank.
  4. Return results ordered by driver, rank, and route name.

Schema

drivers
ColumnTypeDescription
driver_idPKINTUnique driver identifier
driver_nameVARCHAR(100)Driver display name
trip_events
ColumnTypeDescription
event_idPKINTUnique trip event identifier
driver_idINTDriver associated with the event
event_typeVARCHAR(40)Event classification
origin_zoneVARCHAR(50)Trip starting zone
destination_zoneVARCHAR(50)Trip ending zone
event_timestampTIMESTAMPTime the event occurred
Tablesdriverstrip_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results