Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top 5 Customers in 90 Days

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

Your question is Top 5 Customers in 90 Days. 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

Intelliswift wants a recent-spend leaderboard for customers using its customer analytics data. Write a PostgreSQL query to identify the five customers with the highest completed-order spend during the last 90 days.

Requirements

  1. Include only orders from the last 90 days, including today, based on CURRENT_DATE.
  2. Include only orders with status = 'completed'.
  3. Aggregate order amounts by customer, sort from highest to lowest spend, and return exactly five customers when at least five qualify.
  4. Use a deterministic secondary sort by customer_id for tied totals.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer's full name
emailVARCHAR(150)Customer email address
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
customer_idINTCustomer associated with the order
order_dateDATEDate the order was placed
total_amountNUMERIC(12,2)Total monetary value of the order
statusVARCHAR(20)Order processing status
Tablescustomersorders
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results