Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rank Users by Cohort Activity

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

Your question is Rank Users by Cohort Activity. 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

Alpaca wants to compare user engagement among customers who joined during the same month. Write a PostgreSQL query that ranks users by their qualifying Alpaca app activity within each signup-month cohort.

Requirements

  1. Include users who signed up during Q1 2025, including users with no qualifying activity.
  2. Count each user's activity event from Q1 2025 and derive the cohort as the signup month in YYYY-MM format.
  3. Use a window function to assign the same rank to users with tied activity counts.
  4. Return results ordered by cohort month, activity count descending, and user ID ascending.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique Alpaca user identifier
display_nameVARCHAR(100)User display name
signup_dateDATEDate the user joined Alpaca
activity_events
ColumnTypeDescription
event_idPKINTEGERUnique activity event identifier
user_idINTEGERUser associated with the event
event_typeVARCHAR(50)Type of Alpaca app activity
occurred_atTIMESTAMPTimestamp when the activity occurred
Tablesusersactivity_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results