Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Active Users With Window Functions

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

Your question is Top Active Users 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

Cengage wants to identify the most engaged users of its digital learning products each month. Write a PostgreSQL query that counts valid activity events and returns the top three users for January and February 2025.

Requirements

  1. Count non-null activity events for each user and calendar month.
  2. Rank users independently within each month by activity count descending, breaking ties by user_id ascending.
  3. Return only the top three users per month, including the month, user ID, display name, activity count, and rank.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique Cengage user identifier
display_nameVARCHAR(100)User's display name
emailVARCHAR(255)User email address
activity_events
ColumnTypeDescription
event_idPKINTEGERUnique activity event identifier
user_idINTEGERAssociated user identifier
occurred_atTIMESTAMPTime when the event occurred
event_typeVARCHAR(50)Type of learning activity
Tablesusersactivity_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results