Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Window Functions for Ranking

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

Your question is Window Functions for Ranking. Start with the requirements and the three 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

Whova wants to identify the most engaged attendees during a conference and monitor how their engagement accumulates across event dates. Write a PostgreSQL query using multiple CTEs and window functions.

Requirements

  1. Include only engagement recorded for Whova conference events from June 1 through June 4, 2025, inclusive.
  2. Aggregate engagement points by user and event date, treating NULL points as zero.
  3. Calculate each user's total engagement and rank users from highest to lowest total. Users with equal totals must receive the same rank.
  4. Calculate a chronological running engagement total for each user with SUM() OVER.
  5. Return one row per user and event date, ordered by engagement rank, user ID, and event date.

Schema

whova_users
ColumnTypeDescription
user_idPKINTEGERUnique Whova attendee identifier
full_nameVARCHAR(100)Attendee display name
conference_events
ColumnTypeDescription
event_idPKINTEGERUnique conference event identifier
event_nameVARCHAR(150)Name of the conference session or activity
event_dateDATECalendar date of the event
user_engagement
ColumnTypeDescription
engagement_idPKINTEGERUnique engagement record identifier
user_idINTEGERReferences whova_users.user_id
event_idINTEGERReferences conference_events.event_id
engagement_typeVARCHAR(40)Type of attendee interaction
pointsINTEGERPoints assigned to the interaction
Tableswhova_usersconference_eventsuser_engagement
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results