Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Power Users Query

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

Your question is Top Power Users Query. 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 TELUS Digital AI Community wants to identify its most active contributors for the completed second quarter of 2025. Write a PostgreSQL query that ranks users by the number of activity events recorded during Q2 2025 and returns the top 10%.

Requirements

  1. Include all users in the population, including users with no qualifying activity.
  2. Count only events from 2025-04-01 through 2025-06-30, inclusive.
  3. Rank users by activity count in descending order, using user_id as a deterministic tie-breaker.
  4. Return the smallest whole-number group representing at least 10% of all users, with the user ID, display name, activity count, and rank.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique user identifier
display_nameVARCHAR(100)User's display name
emailVARCHAR(255)User email address
joined_atDATEDate the user joined
activity_events
ColumnTypeDescription
event_idPKINTEGERUnique activity event identifier
user_idINTEGERUser associated with the event
event_typeVARCHAR(50)Type of activity performed
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