Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Find Inactive Customers

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

Your question is Find Inactive Customers. 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

Flipkart wants to identify customers who may need re-engagement because they have not placed an order recently. Using the customer and order data, evaluate activity as of 2025-08-31.

Write a PostgreSQL query to find customers who placed no order during the six-month period from 2025-02-28 through 2025-08-31, inclusive.

Requirements

  1. Return every customer with zero qualifying orders, including customers who have never ordered.
  2. Return customer_id, customer_name, and the number of orders in the period as recent_order_count.
  3. Exclude orders before the six-month window and orders after the as-of date.
  4. Sort the output by customer_id in ascending order.

Schema

customers
ColumnTypeDescription
customer_idPKINTEGERUnique Flipkart customer identifier
customer_nameVARCHAR(100)Customer's display name
orders
ColumnTypeDescription
order_idPKINTEGERUnique order identifier
customer_idINTEGERCustomer who placed the order
order_dateDATEDate on which the order was placed
Tablescustomersorders
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results