Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Top 10% by Engagement

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

Your question is SQL Top 10% by Engagement. 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 Facebook Growth team wants to identify users with the strongest engagement during January 2025. Write a PostgreSQL query that ranks users by their total Facebook app session duration and returns the top 10%.

Requirements

  1. Include every registered user, including users with no qualifying sessions.
  2. Sum session duration in seconds for sessions from 2025-01-01 through 2025-01-31; treat NULL durations as zero.
  3. Use a window function to divide users into ten engagement buckets, with the highest-duration users in bucket 1.
  4. Return the user ID, user name, total duration, and engagement bucket, ordered by duration descending and user ID ascending.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique Facebook user identifier
user_nameVARCHAR(100)User display name
signup_dateDATEDate the user registered
facebook_app_sessions
ColumnTypeDescription
session_idPKINTEGERUnique session identifier
user_idINTEGERUser who generated the session
session_startTIMESTAMPSession start timestamp
duration_secondsINTEGERSession duration in seconds
Tablesusersfacebook_app_sessions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results