Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Users by Activity

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

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

Slack wants to identify its most active users based on messages sent during January 2025. Write a PostgreSQL query that returns the five users with the highest message activity in the specified timeframe.

Requirements

  1. Count each user's messages from 2025-01-01 00:00:00+00 through, but not including, 2025-02-01 00:00:00+00.
  2. Include users with no matching messages in the aggregation, even though they will not appear in the top five for this dataset.
  3. Return the user's display name and activity count, ordered by activity descending and user_id ascending to break ties.
  4. Return only the top five users.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Slack user identifier
display_nameVARCHAR(120)User's Slack display name
emailVARCHAR(255)User email address
messages
ColumnTypeDescription
message_idPKINTUnique message identifier
user_idINTSlack user who sent the message
channel_nameVARCHAR(120)Slack channel containing the message
sent_atTIMESTAMPTZTimestamp when the message was sent
Tablesusersmessages
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results