Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Find Top 3 Regions by Sales
00:00
5 left

Find Top 3 Regions by Sales

EasySQL · PostgreSQL

Problem

Write a query to find the top 3 performing regions by sales volume.

Use the provided regions and sales tables. Treat sales volume as the number of rows with a sale_status of completed; exclude sales that do not map to a named region.

Output

  1. One row per selected region with region_name and sales_volume
  2. Return exactly three regions, ordered by sales volume descending, then region name ascending for ties

Schema

regions
ColumnTypeDescription
region_idPKINTEGERUnique identifier for a region
region_nameVARCHAR(50)Display name of the region
sales
ColumnTypeDescription
sale_idPKINTEGERUnique identifier for a sale
region_idINTEGERRegion associated with the sale
sale_statusVARCHAR(20)Current status of the sale
sale_dateDATEDate on which the sale was recorded
Tablesregionssales
Interviewer

Your question is Find Top 3 Regions by Sales. 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.