Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Projects by Region
00:00
5 left

Top Projects by Region

MediumSQL · PostgreSQL

Problem

How would you write a query to find the top three most expensive projects in each region using a window function?

Use the provided regions, projects, and project_expenses tables. Treat a project’s total cost as the sum of its expense amounts, with projects having no expenses treated as zero.

Output

  1. One row per selected project, with region_name, project_id, project_name, total_cost, and region_rank
  2. Include up to three projects per region, ordered by total cost descending
  3. Break cost ties by project_id ascending, and sort final results by region_name, then region_rank

Schema

regions
ColumnTypeDescription
region_idPKINTUnique region identifier
region_nameVARCHAR(100)Region name
projects
ColumnTypeDescription
project_idPKINTUnique project identifier
project_nameVARCHAR(150)Project name
region_idINTRegion assigned to the project
project_expenses
ColumnTypeDescription
expense_idPKINTUnique expense identifier
project_idINTProject associated with the expense
expense_amountNUMERIC(14,2)Expense amount recorded for the project
Tablesregionsprojectsproject_expenses
Interviewer

Your question is Top Projects by Region. Start with the requirements and the three 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.