Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Three Products by Region

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

Your question is Top Three 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

Colgate-Palmolive wants a regional view of product performance for the most recently completed calendar quarter. Write a PostgreSQL query that identifies the top-selling products in each sales region.

Requirements

  1. Filter sales to the most recently completed calendar quarter relative to CURRENT_DATE.
  2. Join sales to regions and products to return readable region and product names.
  3. Calculate total units sold for each region and product.
  4. Rank products within each region by total units sold in descending order.
  5. Return every product whose rank is three or better, including all products tied at the third rank. Display region_name, product_name, total_units_sold, and product_rank.
  6. Order the final output by region, rank, and product name.

Schema

regions
ColumnTypeDescription
region_idPKINTUnique regional identifier
region_nameVARCHAR(100)Sales region name
products
ColumnTypeDescription
product_idPKINTUnique product identifier
product_nameVARCHAR(150)Colgate-Palmolive product name
sales
ColumnTypeDescription
sale_idPKINTUnique sales transaction identifier
region_idINTReferences regions.region_id
product_idINTReferences products.product_id
sale_dateDATEDate on which the sale occurred
units_soldINTNumber of units sold
Tablessalesregionsproducts
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results