Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Top Customers Per Month

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

Your question is SQL Top Customers Per Month. 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

Airtel Payments Bank wants a monthly view of its highest-value customers. Write a PostgreSQL query to find the top three customers by total successful transaction amount in each calendar month.

Requirements

  1. Include only transactions with status = 'SUCCESS' and a positive, non-null amount.
  2. Join transactions to customers to return the customer's name.
  3. Aggregate transaction amounts by month and customer, rank customers within each month, and return exactly the top three per month.
  4. Display the month as YYYY-MM and order the results by month and rank.

Schema

customers
ColumnTypeDescription
customer_idPKINTEGERUnique customer identifier
customer_nameVARCHAR(100)Customer's full name
transactions
ColumnTypeDescription
transaction_idPKBIGINTUnique transaction identifier
customer_idINTEGERCustomer who initiated the transaction
transaction_timestampTIMESTAMPTransaction date and time
amountNUMERIC(12,2)Transaction amount in Indian rupees
statusVARCHAR(20)Transaction processing status
Tablescustomerstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results