Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for Last Quarter Purchases

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

Your question is SQL for Last Quarter Purchases. Start with the requirements and the two tables 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

Cisco Restaurant + Bar wants a quarterly customer purchase report for Business Analytics. Write a PostgreSQL query that summarizes customer activity during the last completed calendar quarter relative to the reporting date 2025-08-15.

Requirements

  1. Calculate the quarter boundaries dynamically from the reporting date using PostgreSQL date functions.
  2. Return every customer, including customers with no purchases during the quarter.
  3. Show purchase count, total spend, and the date of each customer’s most recent purchase in the quarter.
  4. Sort by total spend descending, then customer_id ascending. Exclude purchases outside the quarter, including those on the quarter-end boundary.

Schema

customers
ColumnTypeDescription
customer_idPKINTEGERUnique customer identifier
customer_nameVARCHAR(100)Customer’s full name
emailVARCHAR(255)Customer email address
purchases
ColumnTypeDescription
purchase_idPKINTEGERUnique purchase identifier
customer_idINTEGERReferences customers.customer_id
purchased_atTIMESTAMPTimestamp when the purchase was made
amountNUMERIC(10,2)Purchase amount
Tablescustomerspurchases
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results