Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top 10 Users by Activity
00:00
5 left

Top 10 Users by Activity

MediumSQL · PostgreSQL

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
Interviewer

Your question is Top 10 Users by Activity. Start with the requirements and the two tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.