Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top 10 Users by Activity

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

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

Netsmart Technologies wants to identify the most active users of myAvatar during January 2025. Write a PostgreSQL query that ranks users by recorded activity.

Requirements

  1. Include every user, including users with no qualifying activity.
  2. Count each user's activities from January 1 through January 31, 2025, and calculate the number of distinct active days.
  3. Return the top 10 users, ordered by activity count descending, active days descending, and user_id ascending as a deterministic tie-breaker.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
full_nameVARCHAR(100)User's display name
emailVARCHAR(255)User's email address
role_nameVARCHAR(50)myAvatar access role
activity_events
ColumnTypeDescription
event_idPKINTUnique activity event identifier
user_idINTAssociated user identifier
activity_typeVARCHAR(50)Type of myAvatar 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