Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top 3 Sales Per Month

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

Your question is Top 3 Sales Per Month. Start with the requirements and the two 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

Genpact's reporting team needs a monthly sales leaderboard for management review. Write a PostgreSQL query that calculates completed sales for each sales representative by month and returns the top three representatives in every month.

Requirements

  1. Include only orders with status = 'Completed'.
  2. Aggregate order amounts by calendar month and sales representative.
  3. Rank representatives separately within each month using a window function.
  4. Return the month, representative name, total sales, and rank, ordered chronologically and by rank.

Schema

sales_reps
ColumnTypeDescription
rep_idPKINTPrimary key for the sales representative
rep_nameVARCHAR(100)Representative's full name
regionVARCHAR(50)Representative's assigned region
orders
ColumnTypeDescription
order_idPKINTPrimary key for the order
rep_idINTSales representative assigned to the order
order_dateDATEDate the order was placed
amountDECIMAL(12,2)Order value
statusVARCHAR(20)Order processing status
Tablessales_repsorders
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results