Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Compare Region Performance Across Months
00:00
5 left

Compare Region Performance Across Months

MediumSQL · PostgreSQL

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
Interviewer

Your question is Compare Region Performance Across Months. Start with the requirements and the one table 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.