Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Top 5% Daily Users
00:00
5 left

SQL for Top 5% Daily Users

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify the top 5% of users based on daily active usage over the last quarter.

For this exercise, treat the last quarter as April 1, 2026 through June 30, 2026. Calculate each active user's average daily usage, exclude activity outside that period, and use user_id as the tie-breaker.

Output

  1. One row per selected user with user_id, user_name, avg_daily_usage, and usage_rank.
  2. Include only the top 5% of active users, rounded up to at least one user.
  3. Order by usage_rank, then user_id.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
user_nameVARCHAR(100)User display name
user_activity
ColumnTypeDescription
activity_idPKINTUnique activity record identifier
user_idINTUser associated with the activity
activity_dateDATECalendar date of recorded usage
usage_secondsINTUsage duration in seconds
Tablesusersuser_activity
Interviewer

Your question is SQL for Top 5% Daily Users. 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.