Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Window Functions for Top Units
00:00
5 left

Window Functions for Top Units

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions such as ROW_NUMBER(), RANK(), or DENSE_RANK() to identify the top-performing business units at Genpact clients.

Use total billable revenue as the performance measure and include tied units at the second rank.

Output

  1. Return client_name, business_unit_name, total_billable_revenue, and performance_rank.
  2. Return the top two ranks for each client, with one row per business unit.
  3. Order by client name, rank ascending, and business unit name.

Schema

clients
ColumnTypeDescription
client_idPKINTUnique client identifier
client_nameVARCHAR(100)Genpact client name
business_units
ColumnTypeDescription
business_unit_idPKINTUnique business unit identifier
client_idINTClient owning the business unit
business_unit_nameVARCHAR(120)Business unit name
performance_metrics
ColumnTypeDescription
metric_idPKINTUnique performance record identifier
business_unit_idINTBusiness unit measured
metric_monthDATEMonth represented by the record
billable_revenueNUMERIC(12,2)Monthly billable revenue
Tablesclientsbusiness_unitsperformance_metrics
Interviewer

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