Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Transactions by Customer
00:00
5 left

SQL Transactions by Customer

MediumSQL · PostgreSQL

Problem

Univest wants a monthly activity report for its customers. Write a SQL query to count each customer's transactions during the previous calendar month.

Output

  1. Return one row per customer, including customers with no transactions during the period.
  2. Include customer_id, customer_name, and transaction_count.
  3. Count only transactions from the previous calendar month. Transactions with a NULL timestamp are excluded from the count.
  4. Sort by transaction_count descending, then customer_id ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer's full name
emailVARCHAR(255)Customer email address
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idINTCustomer associated with the transaction
transaction_atTIMESTAMPTZTimestamp when the transaction occurred
Tablescustomerstransactions
Interviewer

Your question is SQL Transactions by Customer. 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.