Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Monthly Trip Growth by Market

MediumSQL · PostgreSQL00:00
I
Practice interviewer
Your interviewer
In session
I
Interviewer

Welcome to the SQL screen.

The question is on your right: Monthly Trip Growth by Market. Read through the requirements and the three tables first.

Run and submit your code as often as you need. You also have five interviewer messages this session - want to talk through your approach, or are you ready to start coding?

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