Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Compare Region Performance Across Months

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

Your question is Compare Region Performance Across Months. Start with the requirements and the one table 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 given monthly performance data for delivery regions. Write a PostgreSQL query that compares each region’s current month performance to its previous month using a self-join. Return only months where a prior month exists, along with the month-over-month change in orders and revenue.

Schema

region_monthly_performance
ColumnTypeDescription
region_idINTRegion identifier
region_nameVARCHAR(100)Region name
month_startDATEFirst day of the month
orders_completedINTCompleted orders in the month
gross_revenueNUMERIC(12,2)Gross revenue for the month
Tablesregion_monthly_performance
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results