Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Branch Deposits by Customer

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

Your question is Top Branch Deposits by Customer. Start with the requirements and the one table 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

You are given a single table of PNC deposit transactions. Write a SQL query to return the top 3 customers by total posted deposit amount. Only include rows where transaction_type = 'Deposit' and status = 'Posted'. The result should show each customer's name and total deposited amount, sorted from highest to lowest total.

Schema

pnc_transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_nameVARCHAR(100)Customer full name
branch_nameVARCHAR(100)PNC branch where the transaction was recorded
transaction_typeVARCHAR(20)Transaction type such as Deposit or Withdrawal
statusVARCHAR(20)Transaction status such as Posted, Pending, or Reversed
amountDECIMAL(12,2)Transaction amount
transaction_dateDATEDate the transaction occurred
Tablespnc_transactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results