Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Customers Purchased in January Only

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

Your question is Customers Purchased in January Only. 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

Kotak's analytics team wants to identify customers who purchased through Kotak's digital commerce channel in January 2025 but made no purchase in February 2025. Write a PostgreSQL query using the customers and purchases tables.

Requirements

  1. Return each qualifying customer's ID, name, and number of January purchases.
  2. Include customers with at least one purchase from January 1 through January 31, 2025.
  3. Exclude any customer with a purchase from February 1 through February 28, 2025.
  4. Sort the results by customer_id ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTEGERUnique customer identifier
customer_nameVARCHAR(100)Customer's full name
segmentVARCHAR(30)Customer segment
purchases
ColumnTypeDescription
purchase_idPKINTEGERUnique purchase identifier
customer_idINTEGERCustomer associated with the purchase
purchase_dateDATEDate on which the purchase occurred
amountNUMERIC(12,2)Purchase amount
channelVARCHAR(30)Purchase channel
Tablescustomerspurchases
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results