Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Window Functions for Top Customers

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

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

Pacific Gas and Electric needs a regional view of customer electricity consumption for 2025. Write a PostgreSQL query that identifies the top three customers by total usage within each PG&E service region.

Requirements

  1. Sum each customer's usage_kwh during calendar year 2025.
  2. Include customers with no qualifying usage, treating their total as zero.
  3. Rank customers independently within each region using a window function.
  4. Return the top three customers per region, ordered by region, usage descending, and customer ID as a deterministic tie-breaker.

Schema

customers
ColumnTypeDescription
customer_idPKINTEGERUnique PG&E customer identifier
customer_nameVARCHAR(100)Customer account name
regionVARCHAR(50)PG&E service region
service_start_dateDATEDate the customer's service began
usage_records
ColumnTypeDescription
usage_idPKINTEGERUnique usage record identifier
customer_idINTEGERReferenced customer identifier
usage_dateDATEDate of the electricity usage measurement
usage_kwhNUMERIC(12,2)Measured electricity usage in kilowatt-hours
Tablescustomersusage_records
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results