Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Top 5 Products by Region

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

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

Walgreens Boots Alliance wants a regional view of its highest-selling products. Using product, region, and sales data, write a PostgreSQL query to return the top five products by completed sales in each region.

Requirements

  1. Join the sales, products, and regions tables using their key relationships.
  2. Consider only sales with sale_status = 'Completed' and calculate total sales by region and product.
  3. Rank products independently within each region using a window function, then return ranks 1 through 5.
  4. Return the region, product, total sales, and rank, ordered by region and rank. Products with no completed sales should not appear.

Schema

regions
ColumnTypeDescription
region_idPKINTUnique regional identifier
region_nameVARCHAR(100)Walgreens operating region name
products
ColumnTypeDescription
product_idPKINTUnique product identifier
product_nameVARCHAR(150)Product name
categoryVARCHAR(80)Product category
sales
ColumnTypeDescription
sale_idPKINTUnique sale identifier
region_idINTRegion where the sale occurred
product_idINTProduct sold, nullable for an unclassified sale
sale_amountNUMERIC(12,2)Revenue amount for the sale
sale_statusVARCHAR(30)Transaction status
Tablesregionsproductssales
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results