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.
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.
customer_id, customer_name, and the number of orders in the period as recent_order_count.customer_id in ascending order.| Column | Type | Description |
|---|---|---|
| customer_idPK | INTEGER | Unique Flipkart customer identifier |
| customer_name | VARCHAR(100) | Customer's display name |
| Column | Type | Description |
|---|---|---|
| order_idPK | INTEGER | Unique order identifier |
| customer_id | INTEGER | Customer who placed the order |
| order_date | DATE | Date on which the order was placed |