Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Drivers Who Didn’t Trip
00:00
5 left

Drivers Who Didn’t Trip

MediumSQL · PostgreSQL

Problem

How would you write a SQL query to find drivers who didn’t take a trip in their first 7 days?

Treat the first 7 days as the interval from signup time, inclusive, through signup time plus 7 days, exclusive. Consider only completed trips and exclude drivers whose signup timestamp is unknown.

Output

  1. One row per qualifying driver
  2. Columns: driver_id, signup_at
  3. Include only drivers with no completed trip in the defined interval
  4. Order by driver_id ascending

Schema

drivers
ColumnTypeDescription
driver_idPKINTUnique driver identifier
signup_atTIMESTAMPTimestamp when the driver signed up
trips
ColumnTypeDescription
trip_idPKINTUnique trip identifier
driver_idINTDriver assigned to the trip
trip_started_atTIMESTAMPTimestamp when the trip started
statusVARCHAR(20)Trip completion status
Tablesdriverstrips
Interviewer

Your question is Drivers Who Didn’t Trip. 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.