Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling Average Sign-Ups Query

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

Your question is Rolling Average Sign-Ups 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

WeWork wants to monitor member acquisition trends across active New York locations. Write a PostgreSQL query that reports the 30-day rolling average of daily member sign-ups for the period ending February 28, 2025.

Requirements

  1. Include active WeWork locations in New York only.
  2. Count sign-ups by location and calendar date, treating dates without sign-ups as zero.
  3. Calculate a rolling average across the current date and the preceding 29 calendar days.
  4. Return only dates with at least one sign-up, ordered by location and date.

Schema

member_signups
ColumnTypeDescription
signup_idPKINTUnique sign-up event identifier
member_idINTMember identifier
location_idINTWeWork location associated with the sign-up
signup_dateDATEDate of the member sign-up
wework_locations
ColumnTypeDescription
location_idPKINTUnique WeWork location identifier
location_nameVARCHAR(100)Display name of the location
cityVARCHAR(80)City containing the location
is_activeBOOLEANWhether the location is active
Tablesmember_signupswework_locations
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results