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

Top Three Sales by Region

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the top three highest sales by region.

Use the provided regional and sales data. Return the three highest-value sales for every region that has sales, excluding regions without sales and sales assigned to unknown regions.

Output

  1. One row per selected sale, with region_name, sale_id, sale_amount, and sale_rank.
  2. Include at most three rows per region, ranked from highest to lowest sale amount.
  3. Order by region_name, then sale_rank, then sale_id.

Schema

regions
ColumnTypeDescription
region_idPKINTUnique identifier for a sales region
region_nameVARCHAR(100)Display name of the sales region
sales
ColumnTypeDescription
sale_idPKINTUnique identifier for a sale
region_idINTIdentifier of the associated region
sale_amountNUMERIC(12,2)Value of the sale
Tablesregionssales
Interviewer

Your question is Top Three Sales by Region. 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.