Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Services by Region Using Window Functions
00:00
5 left

Top Services by Region Using Window Functions

MediumSQL · PostgreSQL

Problem

Write a query to find the top three most-used cloud services by region, utilizing window functions on Google Cloud usage data. Treat usage_units as the usage measure and sum it for each service within each non-null region. Include only services that match the service catalog.

Output

  1. One row per region and selected service, with region, service_name, total_usage, and usage_rank.
  2. Include the three highest-ranked services per region, ordered by region, rank, and service name. Break usage ties alphabetically by service name.

Schema

cloud_services
ColumnTypeDescription
service_idPKINTUnique identifier for a Google Cloud service
service_nameVARCHAR(100)Google Cloud service name
cloud_usage
ColumnTypeDescription
usage_idPKINTUnique usage record identifier
regionVARCHAR(50)Google Cloud region where usage occurred
service_idINTReferenced Google Cloud service identifier
usage_unitsBIGINTMeasured usage for the record
Tablescloud_usagecloud_services
Interviewer

Your question is Top Services by Region Using Window Functions. Start with the requirements and the two 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.