Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Product Revenue Last 30 Days

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

Your question is Top Product Revenue Last 30 Days. Start with the requirements and the three 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

ShopSphere wants to identify its highest-revenue products from recent sales activity. Write a SQL query to find the top 5 products by revenue in the last 30 days, excluding any returned items.

Assume the query is run relative to the latest date in the dataset, and revenue should be calculated as quantity * unit_price.

Requirements

  1. Use only order items from the last 30 days based on orders.order_date.
  2. Exclude items where order_items.is_returned = true.
  3. Join the necessary tables to return product names.
  4. Aggregate revenue by product.
  5. Return the top 5 products ordered by revenue descending.

Schema

products
ColumnTypeDescription
product_idPKINTUnique product identifier
product_nameVARCHAR(100)Product display name
categoryVARCHAR(50)Product category
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
customer_idINTCustomer who placed the order
order_dateDATEDate the order was placed
order_items
ColumnTypeDescription
order_item_idPKINTUnique line item identifier
order_idINTReferences orders.order_id
product_idINTReferences products.product_id
quantityINTNumber of units purchased
unit_priceDECIMAL(10,2)Unit sale price at the time of purchase
is_returnedBOOLEANWhether the line item was returned
Tablesproductsordersorder_items
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results