Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Join With Monthly Revenue
00:00
5 left

SQL Join With Monthly Revenue

MediumSQL · PostgreSQL

Problem

Write an SQL query to join two tables and calculate monthly revenue by customer segment.

Use the provided customer and transaction data. Include matched transactions, label customers without a segment as Unsegmented, and exclude transactions without a matching customer.

Output

  1. One row per month and customer segment
  2. Columns: revenue_month, customer_segment, and total_revenue
  3. Sort by month ascending, then segment ascending

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer name
segmentVARCHAR(50)Customer classification
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idINTCustomer associated with the transaction
transaction_dateDATEDate of the transaction
amountDECIMAL(12,2)Transaction revenue amount
Tablescustomerstransactions
Interviewer

Your question is SQL Join With Monthly Revenue. 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.