Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
MAU and Retention for Roku
00:00
5 left

MAU and Retention for Roku

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate the monthly active users (MAU) and the month-over-month retention rate for Roku streaming devices.

Use only valid playback activity from Roku devices associated with known users. Treat a user as active once per calendar month.

Output

  1. One row per month with activity, ordered chronologically.
  2. Columns: month_start, mau, previous_month_mau, retained_users, and retention_rate_pct.
  3. Retention is the percentage of the previous month's users who were also active in the current month. Return NULL when no previous-month denominator exists.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Roku account identifier
user_nameVARCHAR(100)Display name for the Roku account
account_statusVARCHAR(20)Current account status
roku_devices
ColumnTypeDescription
device_idPKINTUnique Roku streaming device identifier
user_idINTRoku account associated with the device
model_nameVARCHAR(80)Roku device model
device_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
device_idINTDevice that generated the event
activity_atTIMESTAMPTimestamp when the activity occurred
event_typeVARCHAR(40)Type of device activity event
Tablesusersroku_devicesdevice_activity
Interviewer

Your question is MAU and Retention for Roku. Start with the requirements and the three 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.