Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Customers Last 30 Days
00:00
5 left

Top Customers Last 30 Days

EasySQL · PostgreSQL

Problem

Write a SQL query to find the top 5 customers with the highest total transaction value in the last 30 days.

Use PostgreSQL syntax and treat the period as transaction dates from CURRENT_DATE - INTERVAL '30 days' through today.

Output

  1. One row per customer, with customer_id, customer_name, and total_transaction_value.
  2. Include only the five highest totals, ordered from highest to lowest.
  3. Break ties by ascending customer_id.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique Ally Financial customer identifier
customer_nameVARCHAR(100)Customer display name
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idINTCustomer associated with the transaction
transaction_dateDATETransaction posting date
transaction_valueNUMERIC(12,2)Transaction amount in dollars
Tablescustomerstransactions
Interviewer

Your question is Top Customers Last 30 Days. 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.