Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Detect Anomalous Viewer Drop-offs

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

Your question is Detect Anomalous Viewer Drop-offs. 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

Twitch analytics needs to identify channels whose daily active viewers have dropped sharply compared with their recent historical performance. Write a PostgreSQL query that compares each channel's latest viewer count with the average from earlier dates having the same weekday.

Requirements

  1. Identify the latest metric date in daily_channel_metrics.
  2. Calculate each channel's historical baseline using matching weekdays from the preceding 28 days, excluding the latest date.
  3. Return channels with at least two historical observations and a current viewer count at least 25% below a positive baseline.
  4. Include the channel name, current viewers, baseline viewers, and percentage drop, ordered by the largest drop first.

Schema

twitch_channels
ColumnTypeDescription
channel_idPKINTEGERUnique Twitch channel identifier
channel_nameVARCHAR(100)Twitch channel name
daily_channel_metrics
ColumnTypeDescription
channel_idPKINTEGERTwitch channel identifier
metric_datePKDATEDate of the daily metric
daily_active_viewersINTEGERDistinct viewers active on the channel that day
Tablestwitch_channelsdaily_channel_metrics
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results