Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top 3 Users by Activity

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

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

The Nio Robotics Fleet Console team wants to identify its most active users during August 2026. Write a PostgreSQL query using the users and activity_events tables.

Requirements

  1. Count each user's activity events from August 1 through August 31, 2026, including the start date and excluding September 1.
  2. Return the top three users with their user_id, display name, and activity count.
  3. Use user_id ascending as the deterministic tie-breaker when users have the same activity count.
  4. Include only registered users, and ensure users without matching events do not create incorrect counts.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique registered user identifier
display_nameVARCHAR(100)User's Fleet Console display name
roleVARCHAR(40)User role in the robotics operation
activity_events
ColumnTypeDescription
event_idPKINTEGERUnique activity event identifier
user_idINTEGERUser associated with the activity event
event_typeVARCHAR(40)Type of Fleet Console 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