Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Monthly Revenue by Region
00:00
5 left

SQL Monthly Revenue by Region

MediumSQL · PostgreSQL

Problem

Write a SQL query to join orders, customers, and payments and calculate monthly revenue by region.

Use completed payments with a non-NULL payment timestamp. Treat a NULL customer region as Unknown and exclude payments without matching orders or customers.

Output

  1. One row per revenue month and region, with columns revenue_month, region, and monthly_revenue.
  2. Ignore rows with a NULL paid_at; order by revenue_month ascending, then region ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer name
regionVARCHAR(50)Customer sales region
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
customer_idINTCustomer associated with the order
ordered_atTIMESTAMPOrder creation timestamp
payments
ColumnTypeDescription
payment_idPKINTUnique payment identifier
order_idINTOrder associated with the payment
paid_atTIMESTAMPPayment completion timestamp
amountNUMERIC(12,2)Payment amount
statusVARCHAR(40)Payment processing status
Tablesorderscustomerspayments
Interviewer

Your question is SQL Monthly Revenue by Region. Start with the requirements and the three 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.