Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top 5 Users Per Month

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

Your question is Top 5 Users Per Month. 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

TEKsystems wants to identify the most engaged users of its internal activity platform each month. Write a PostgreSQL query that counts valid user activity records and returns the top five users for every calendar month.

Requirements

  1. Join user_activity to users using user_id.
  2. Group activity by calendar month and user.
  3. Count each user's activity records, excluding rows without an activity timestamp or matching user.
  4. Rank users within each month by activity count descending, using user_id as a deterministic tie-breaker, and return no more than five users per month.
  5. Return results ordered by month, rank, and user ID.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique user identifier
user_nameVARCHAR(100)User display name
team_nameVARCHAR(100)TEKsystems team assignment
user_activity
ColumnTypeDescription
activity_idPKINTEGERUnique activity record identifier
user_idINTEGERUser associated with the activity
activity_atTIMESTAMPTimestamp when the activity occurred
activity_typeVARCHAR(50)Type of platform activity
Tablesusersuser_activity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results