Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Running Subscriber Total by Region
00:00
5 left

Running Subscriber Total by Region

MediumSQL · PostgreSQL

Problem

Write a window function to calculate the running total of active subscribers over time, grouped by region, for Nyc Staffing.

Use valid activation and deactivation events for subscribers with a known region. The running count should reflect each region's cumulative net change through each event date.

Output

  1. One row per region and event date with at least one valid status event
  2. Columns: region, event_date, and active_subscriber_count
  3. Include only non-null regions and valid activation or deactivation events
  4. Order by region, then event_date ascending

Schema

subscribers
ColumnTypeDescription
subscriber_idPKINTUnique subscriber identifier
subscriber_nameVARCHAR(100)Subscriber display name
regionVARCHAR(50)Subscriber region
subscriber_status_events
ColumnTypeDescription
event_idPKINTUnique status event identifier
subscriber_idINTSubscriber associated with the event
event_dateDATEDate of the status change
event_typeVARCHAR(20)Subscriber status change type
Tablessubscriberssubscriber_status_events
Interviewer

Your question is Running Subscriber Total by Region. 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.