Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Customers by Closed-Won Sales

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

Your question is Top Customers by Closed-Won Sales. 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

You are given Demandbase-style CRM sales data and need to identify the top five customers by total sales. Write a PostgreSQL query that returns each customer's name and their total closed-won sales amount. Exclude opportunities that are not closed-won, and rank customers from highest to lowest total sales.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer name
segmentVARCHAR(50)Customer segment
opportunities
ColumnTypeDescription
opportunity_idPKINTUnique opportunity identifier
customer_idINTCustomer tied to the opportunity
stageVARCHAR(50)Opportunity stage
close_dateDATEOpportunity close date
opportunity_line_items
ColumnTypeDescription
line_item_idPKINTUnique line item identifier
opportunity_idINTOpportunity tied to the line item
amountDECIMAL(12,2)Sales amount for the line item
Tablescustomersopportunitiesopportunity_line_items
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results