Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

CTE Purchases Query

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

Your question is CTE Purchases Query. 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

Capgemini Engineering wants to identify customers who are engaging frequently with its digital commerce services. Write a PostgreSQL query using CTEs to find customers with more than three purchases during the last 30 days.

For reproducible testing, interpret the period relative to PostgreSQL's CURRENT_DATE. The sample data is positioned around the current date used for evaluation.

Requirements

  1. Use at least one CTE to isolate purchases from the last 30 days.
  2. Join the filtered purchases to customer records.
  3. Count purchases for each customer and return only customers with more than three purchases.
  4. Return results ordered by purchase 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
purchases
ColumnTypeDescription
purchase_idPKINTUnique purchase identifier
customer_idINTCustomer who made the purchase
purchase_timestampTIMESTAMPTZDate and time of the purchase
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