Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Compare Weekly User Activity Trends
00:00
5 left

Compare Weekly User Activity Trends

MediumSQL · PostgreSQL

Problem

StreamWave wants to measure how each user’s activity changes from one week to the next. Write a SQL query to compare weekly behavior using window functions.

Requirements

  1. For each active user and calendar week, calculate:
    • total sessions
    • total minutes watched
  2. Compare each week to the user’s previous active week.
  3. Return the week-over-week change in both sessions and minutes watched.
  4. Only include rows where a previous week exists.
  5. Order the final output by user_id and week_start.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
user_nameVARCHAR(100)Full name of the user
signup_dateDATEDate the user signed up
plan_typeVARCHAR(20)Subscription plan type
watch_sessions
ColumnTypeDescription
session_idPKINTUnique session identifier
user_idINTUser associated with the session
session_startTIMESTAMPTimestamp when the session started
minutes_watchedINTMinutes watched during the session
device_typeVARCHAR(20)Device used for the session
Tablesuserswatch_sessions
Interviewer

Your question is Compare Weekly User Activity Trends. 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.