Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Window Functions for Revenue

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

Your question is SQL Window Functions for Revenue. 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

Devoteam's analytics team needs a cohort-level view of user revenue for its data platform. Write a PostgreSQL query that aggregates completed transaction revenue per user, then calculates both revenue rank and cumulative revenue within each signup-month cohort.

Requirements

  1. Derive each user's cohort from the month of signup_date.
  2. Include users with no completed transactions, treating their revenue as zero.
  3. Use window functions to calculate revenue_rank within each cohort and running_total ordered by revenue descending, with user_id as a deterministic tie-breaker.
  4. Exclude users whose signup date is unknown and transactions that are not completed.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
user_nameVARCHAR(100)User display name
signup_dateDATEDate the user signed up
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
user_idINTUser associated with the transaction
amountNUMERIC(10,2)Revenue amount
statusVARCHAR(20)Transaction processing status
Tablesuserstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results