Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Branch Deposits by Customer
00:00
5 left

Top Branch Deposits by Customer

EasySQL · PostgreSQL

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
Interviewer

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