Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Average Transaction Per Customer

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

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

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
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results