Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Time-Window Top Products Query
00:00
5 left

Time-Window Top Products Query

MediumSQL · PostgreSQL

Problem

Write a query to identify top-performing products based on specific time-window criteria at Wayfair.

Use completed orders from the current 30-day window, 2025-01-01 through 2025-01-30, and compare them with the preceding 30-day window, 2024-12-02 through 2024-12-31. Return the three products with the highest current-window revenue.

Output

  1. One row per qualifying product with product_id, product_name, current_revenue, previous_revenue, and revenue_change_percent
  2. Include products with no previous-window revenue, representing the percentage as NULL
  3. Sort by current_revenue descending, then product_id ascending

Schema

products
ColumnTypeDescription
product_idPKINTUnique product identifier
product_nameVARCHAR(150)Wayfair product name
categoryVARCHAR(80)Product category
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
order_dateDATEDate the order was placed
order_statusVARCHAR(20)Order status, such as completed or cancelled
order_items
ColumnTypeDescription
order_item_idPKINTUnique order-line identifier
order_idINTReferenced order
product_idINTReferenced product
quantityINTUnits purchased
unit_priceNUMERIC(10,2)Price per unit at order time
Tablesproductsordersorder_items
Interviewer

Your question is Time-Window Top Products Query. Start with the requirements and the three tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.