Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Monthly Trip Growth by Market

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

Your question is Monthly Trip Growth by Market. 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

RideNow wants to understand market growth by city. Write a SQL query that joins trips, users, and cities to calculate monthly growth by market for completed trips in 2024.

Requirements

  1. Return one row per city and month for completed trips only.
  2. For each city-month, calculate:
    • total completed trips
    • distinct active riders
  3. Use the previous month within each city to calculate:
    • trip growth rate
    • active rider growth rate
  4. Exclude months where the previous month does not exist for that city.
  5. Order the final output by city_name, then month.

Schema

trips
ColumnTypeDescription
trip_idPKINTUnique trip identifier
user_idINTRider who took the trip
city_idINTCity where the trip occurred
trip_dateDATEDate of the trip
statusVARCHAR(20)Trip status such as completed or cancelled
fare_amountDECIMAL(10,2)Fare amount charged for the trip
users
ColumnTypeDescription
user_idPKINTUnique user identifier
user_nameVARCHAR(100)Rider name
signup_city_idINTCity where the rider signed up
signup_dateDATEDate the rider signed up
cities
ColumnTypeDescription
city_idPKINTUnique city identifier
city_nameVARCHAR(100)Market name
regionVARCHAR(50)Region grouping for the city
Tablestripsuserscities
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results