Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 30-Day Average Query

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

Your question is Rolling 30-Day Average Query. 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

Beyond Finance wants to monitor daily sign-ups for its debt-relief application funnel. Write a PostgreSQL query that calculates the rolling 30-day average of valid user sign-ups for the reporting period from February 1 through February 5, 2024.

Requirements

  1. Count each user only once per sign-up date, even if duplicate sign-up events exist.
  2. Exclude test users and events that are not sign-up events.
  3. Treat days with no valid sign-ups as zero and calculate the average across the current day and preceding 29 calendar days.
  4. Return the reporting date, daily sign-ups, and rolling average, ordered chronologically.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique user identifier
is_test_userBOOLEANIndicates whether the account is for testing
user_events
ColumnTypeDescription
event_idPKINTEGERUnique event identifier
user_idINTEGERUser associated with the event
event_typeVARCHAR(30)Type of user funnel event
occurred_atTIMESTAMPTimestamp when the event occurred
Tablesusersuser_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results