Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL: Rides and Weekly Drivers
00:00
5 left

SQL: Rides and Weekly Drivers

MediumSQL · PostgreSQL

Problem

A transportation platform needs a weekly operating report for San Francisco. Write a SQL query that returns completed San Francisco rides and active San Francisco-based drivers for each of the 12 calendar weeks ending in the reporting week of 2026-09-06.

Output

  1. Return one row per week and metric, with columns week_start, metric_name, and metric_value.
  2. Include every week in the 12-week period, including weeks with no activity, using zero for missing metrics.
  3. completed_sf_rides counts rides whose region is San Francisco and whose completion flag is Y.
  4. active_sf_drivers counts distinct drivers whose home region is San Francisco and who have at least one ride in that week, regardless of ride completion status.
  5. Order by week_start ascending and then metric_name ascending.

Schema

rides
ColumnTypeDescription
ride_idPKINTUnique ride identifier
start_timeTIMESTAMPRide start timestamp
end_timeTIMESTAMPRide end timestamp
passenger_idINTPassenger identifier
driver_idINTPassenger identifier referencing drivers.driver_id
ride_regionVARCHAR(100)Region where the ride occurred
is_completedVARCHAR(1)Whether the ride completed, Y or N
drivers
ColumnTypeDescription
driver_idPKINTUnique driver identifier
onboarding_timeTIMESTAMPTimestamp when the driver completed onboarding
home_regionVARCHAR(100)Driver's home region
Tablesridesdrivers
Interviewer

Your question is SQL: Rides and Weekly Drivers. Start with the requirements and the two tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.