Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Sales Regions SQL Join

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

Your question is Top Sales Regions SQL Join. 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

Bain & Company wants to compare sales performance across regional markets. Write a PostgreSQL query that identifies the top-performing regions during the first quarter of 2025.

Requirements

  1. Join sales to customers and regional_mapping using the customer identifier.
  2. Include only sales from January 1 through March 31, 2025, with sale_status = 'Completed' and active customers.
  3. Calculate total revenue and distinct active customers for each region.
  4. Rank regions by total revenue and return the top three ranks, including ties.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer display name
customer_statusVARCHAR(20)Customer account status
sales
ColumnTypeDescription
sale_idPKINTUnique sale identifier
customer_idINTCustomer associated with the sale
sale_dateDATEDate the sale was recorded
sale_amountDECIMAL(12,2)Revenue amount for the sale
sale_statusVARCHAR(20)Current sale status
regional_mapping
ColumnTypeDescription
customer_idPKINTMapped customer identifier
region_nameVARCHAR(50)Assigned sales region
Tablescustomerssalesregional_mapping
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results