Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Top Sales Reps
00:00
5 left

SQL for Top Sales Reps

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the top 5 sales reps by closed-won revenue, excluding deals that were discounted by more than 20% at Appzen.

Use the sales_reps and deals tables. Treat a NULL discount as 0% and include only deals with status Closed Won.

Output

  1. One row per qualifying sales rep with rep_name and closed_won_revenue.
  2. Include the five highest-revenue reps, ordered by revenue descending, with rep_name ascending as the tie-breaker.

Schema

sales_reps
ColumnTypeDescription
rep_idPKINTUnique sales representative identifier
rep_nameVARCHAR(100)Sales representative name
regionVARCHAR(50)Sales region assigned to the representative
deals
ColumnTypeDescription
deal_idPKINTUnique deal identifier
rep_idINTSales representative responsible for the deal
statusVARCHAR(30)Current deal status
discount_pctDECIMAL(5,2)Discount percentage applied to the deal
revenue_amountDECIMAL(12,2)Revenue attributed to the deal
Tablessales_repsdeals
Interviewer

Your question is SQL for Top Sales Reps. 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.