Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Window Functions for Top Records

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

Your question is Window Functions for Top Records. 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

Virtusa's delivery portfolio team needs to identify the highest-performing services within selected categories. Write a PostgreSQL query that aggregates completed sales and ranks services independently within the Cloud and Data & AI categories.

Requirements

  1. Include every service in the selected categories, including services with no completed sales.
  2. Calculate total completed sales revenue per service, treating missing revenue as zero and excluding cancelled sales.
  3. Use a window function to rank services within each category and return services with rank 1 or 2. Preserve ties at the rank boundary.
  4. Sort the output by category, rank, total revenue descending, and service name.

Schema

products
ColumnTypeDescription
product_idPKINTUnique service identifier
product_nameVARCHAR(120)Virtusa delivery service name
categoryVARCHAR(80)Service category
activeBOOLEANWhether the service is currently offered
sales_records
ColumnTypeDescription
sale_idPKINTUnique sales record identifier
product_idINTReferenced service, nullable for unassigned sales
amountDECIMAL(12,2)Sale value
statusVARCHAR(20)Sale processing status
Tablesproductssales_records
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results