Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Weekly Merchant Launch Metrics by City

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

Your question is Weekly Merchant Launch Metrics by City. 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

You are asked to write a SQL query that pulls the key metrics for a new merchant launch by city and week. The output should show weekly launch performance for each city, including merchant counts and core activity metrics, using PostgreSQL-compatible SQL.

Schema

merchant_launches
ColumnTypeDescription
merchant_idPKINTUnique merchant identifier
city_idINTCity where the merchant launched
launch_dateDATEDate the merchant launched
launch_statusVARCHAR(20)Launch status such as launched or canceled
cities
ColumnTypeDescription
city_idPKINTUnique city identifier
city_nameVARCHAR(100)Display name of the city
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
merchant_idINTMerchant that received the order
order_dateDATEDate the order was placed
order_amountNUMERIC(10,2)Order value
order_statusVARCHAR(20)Order status such as completed or canceled
Tablesmerchant_launchescitiesorders
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results