Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Ranking Customers with Window Functions

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

Your question is Ranking Customers with Window Functions. 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

Entergy analysts need to compare customer energy consumption across service regions and billing months. Write a PostgreSQL query using the customers and energy_usage tables to rank customers by their total monthly usage within each Entergy region.

Requirements

  1. Restrict usage records to January and February 2025.
  2. Aggregate multiple usage readings for the same customer and month.
  3. Use RANK() partitioned by region and month, with the highest usage receiving rank 1. Preserve ties with the same rank.
  4. Return region, month, customer, total usage, and rank, ordered by month, region, rank, and customer ID.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer display name
regionVARCHAR(50)Entergy service region
energy_usage
ColumnTypeDescription
usage_idPKINTUnique usage reading identifier
customer_idINTCustomer identifier associated with the reading
usage_dateDATEDate on which energy usage was recorded
kwh_usedNUMERIC(12,2)Energy consumed in kilowatt-hours
Tablescustomersenergy_usage
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results