Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Running Total with CTEs
00:00
5 left

SQL Running Total with CTEs

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions and Common Table Expressions (CTEs) to find the running total of client transactions.

Use the provided clients and transactions tables. Include only transactions associated with a known client, treat a NULL amount as zero for accumulation, and use transaction ID to break date ties.

Output

  1. One row per valid transaction with transaction_id, client_id, client_name, transaction_date, amount, and running_total.
  2. Include transactions in chronological order within each client, sorted by client name and transaction ID for ties.

Schema

clients
ColumnTypeDescription
client_idPKINTUnique client identifier
client_nameVARCHAR(100)Client display name
client_segmentVARCHAR(30)Optional client segment
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
client_idINTClient associated with the transaction
transaction_dateDATEDate of the transaction
amountNUMERIC(12,2)Transaction amount
Tablesclientstransactions
Interviewer

Your question is SQL Running Total with CTEs. 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.