Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top 3 Products by Category

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

Your question is Top 3 Products by Category. 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

Rakuten Marketplace needs a category-level view of its highest-revenue products. Write a PostgreSQL query using a CTE and a window function to identify the top three products in each non-null category based on completed orders.

Requirements

  1. Calculate revenue as quantity * unit_price for completed order items only.
  2. Aggregate revenue by product and category, then rank products within each category using a window function.
  3. Return products with ranks 1 through 3, including categories with fewer than three products.
  4. Order the final results by category and revenue rank. Break revenue ties by the smaller product_id.

Schema

products
ColumnTypeDescription
product_idPKINTUnique product identifier
product_nameVARCHAR(150)Rakuten Marketplace product name
categoryVARCHAR(80)Product category
order_items
ColumnTypeDescription
order_item_idPKINTUnique order-item identifier
product_idINTReferenced product identifier
quantityINTNumber of units purchased
unit_priceDECIMAL(10,2)Price per purchased unit
order_statusVARCHAR(20)Order processing status
Tablesproductsorder_items
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results