Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Average Transaction Per Customer
00:00
5 left

SQL Average Transaction Per Customer

EasySQL · PostgreSQL

Problem

xAI's finance analytics team wants a per-customer view of transaction values. Write a PostgreSQL query that calculates the average transaction amount for transactions recorded during the past year. Assume CURRENT_DATE is 2026-08-29 when evaluating the sample output.

Requirements

  1. Include only transactions from the last year, including transactions on the boundary date.
  2. Return one row per customer_id, with the average rounded to two decimal places, ordered by customer ID.
  3. Ignore NULL transaction amounts as PostgreSQL's AVG function does by default.

Schema

transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idINTCustomer associated with the transaction
amountNUMERIC(10,2)Transaction amount
transaction_dateDATEDate the transaction occurred
Tablestransactions
Interviewer

Your question is SQL Average Transaction Per 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.