Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
First and Last Transaction
00:00
5 left

First and Last Transaction

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the first and last transaction for each customer.

Return customers with no transactions as well, using the transaction timestamp for chronological order. If a customer has multiple transactions at the same timestamp, use the transaction ID as the tie-breaker.

Output

  1. One row per customer, including customers without transactions.
  2. Columns: customer_id, customer_name, first_transaction_id, first_transaction_at, last_transaction_id, last_transaction_at.
  3. Sort by customer_id ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer display name
emailVARCHAR(255)Customer email address
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idINTCustomer associated with the transaction
transaction_atTIMESTAMPTZTimestamp when the transaction occurred
amountNUMERIC(12,2)Transaction amount
Tablescustomerstransactions
Interviewer

Your question is First and Last Transaction. 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.