Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Three Regions Growth Query
00:00
5 left

Top Three Regions Growth Query

MediumSQL · PostgreSQL

Problem

How would you write a query to find the top three sales regions by monthly revenue growth using Common Table Expressions (CTEs)?

Calculate growth for the latest available revenue month compared with the preceding month. Transactions with a NULL revenue are ignored.

Output

  1. Return one row per qualifying region with region_name, revenue_month, current_revenue, previous_revenue, growth_pct, and growth_rank.
  2. Include only regions with a positive non-NULL previous-month revenue, ordered by growth_rank ascending and region_name ascending for ties.

Schema

sales_regions
ColumnTypeDescription
region_idPKINTUnique sales region identifier
region_nameVARCHAR(50)Sales region name
sales_transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
region_idINTReferenced sales region
sale_dateDATETransaction date
revenueNUMERIC(12,2)Revenue generated by the transaction
Tablessales_regionssales_transactions
Interviewer

Your question is Top Three Regions Growth Query. 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.