Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Top Customers Query
00:00
5 left

SQL Top Customers Query

EasySQL · PostgreSQL

Problem

Business Context

Impact Analytics wants to identify its highest-value customers from sales transactions. The result will support prioritization in customer performance reporting.

Task

Write a PostgreSQL query to find the top 5 customers by total sales.

Requirements

  1. Exclude transactions that do not have a customer name.
  2. Calculate total sales for each customer by summing sale_amount.
  3. Return the five customers with the highest totals, sorted from highest to lowest. Use customer name as a secondary ascending sort for deterministic results.

Schema

sales
ColumnTypeDescription
sale_idPKINTUnique transaction identifier
customer_nameVARCHAR(100)Name of the customer associated with the transaction
sale_amountDECIMAL(10,2)Sales amount for the transaction
sale_dateDATEDate on which the transaction occurred
Tablessales
Interviewer

Your question is SQL Top Customers Query. Start with the requirements and the one table 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.