Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Moving Average With Window Functions
00:00
5 left

Moving Average With Window Functions

MediumSQL · PostgreSQL

Problem

Hotstar wants to monitor how viewer engagement changes over time. Write a PostgreSQL query that calculates each user's session length and their moving average session length over the preceding 30 days, including the current session.

Requirements

  1. Exclude incomplete sessions and sessions without a valid start timestamp.
  2. Join viewer_sessions with users to include the viewer's name.
  3. Use a window function partitioned by user and ordered by session_start.
  4. Return results ordered by user_id and session start time.

Schema

users
ColumnTypeDescription
user_idPKINTUnique viewer identifier
user_nameVARCHAR(100)Viewer name
subscription_tierVARCHAR(20)Hotstar subscription tier
viewer_sessions
ColumnTypeDescription
session_idPKINTUnique session identifier
user_idINTViewer identifier
session_startTIMESTAMPSession start timestamp
session_endTIMESTAMPSession end timestamp
Tablesusersviewer_sessions
Interviewer

Your question is Moving Average With Window Functions. 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.