Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Customers by Transaction Volume
00:00
5 left

Top Customers by Transaction Volume

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the top 10% of customers by transaction volume over the last quarter at HDFC Bank.

Use the customers and transactions tables. Treat transaction volume as the count of posted transactions during the last completed calendar quarter. Exclude customers with no qualifying transactions.

Output

  1. One row per selected customer with customer_id, customer_name, transaction_volume, and customer_rank.
  2. Include the highest-volume 10% of eligible customers, rounding the required count up when necessary.
  3. Order by customer_rank, then customer_id.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique HDFC Bank customer identifier
customer_nameVARCHAR(100)Customer's registered name
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idINTCustomer associated with the transaction
transaction_dateDATEDate on which the transaction was recorded
transaction_statusVARCHAR(20)Processing status of the transaction
Tablescustomerstransactions
Interviewer

Your question is Top Customers by Transaction Volume. 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.