Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Window Functions SQL Query

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

Your question is Window Functions SQL Query. 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

Eli Lilly’s commercial analytics team wants to compare completed prescription revenue for Lilly products across U.S. regions. Write a PostgreSQL query that ranks products within each region for the first quarter of 2025.

Requirements

  1. Include only completed prescription records dated from 2025-01-01 through 2025-03-31.
  2. Calculate total net revenue for each region and product.
  3. Use a window function to rank products within each region by total revenue descending, returning the top two ranked products per region. Include ties when applicable.
  4. Return regions with qualifying prescription activity, ordered by region and rank.

Schema

regions
ColumnTypeDescription
region_idPKINTUnique sales region identifier
region_nameVARCHAR(50)U.S. sales region name
products
ColumnTypeDescription
product_idPKINTUnique Lilly product identifier
product_nameVARCHAR(100)Lilly product name
therapeutic_areaVARCHAR(100)Product therapeutic category
prescription_sales
ColumnTypeDescription
sale_idPKINTUnique prescription sales record identifier
region_idINTReferences regions.region_id
product_idINTReferences products.product_id
sale_dateDATEPrescription record date
net_revenueDECIMAL(12,2)Net revenue in U.S. dollars
statusVARCHAR(20)Processing status of the record
Tablesregionsproductsprescription_sales
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results