Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Running 7-Day Average in SQL

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

Your question is Running 7-Day Average in SQL. 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

Northeastern University’s analytics team monitors engagement in the Northeastern Canvas LMS. Write a PostgreSQL query that calculates daily active users and their trailing seven-calendar-day average.

Requirements

  1. Count distinct valid users with at least one active platform event per calendar day.
  2. Include calendar dates with no active users, treating their daily count as zero.
  3. Calculate the average of the current day and previous six calendar days using a window function. For the first six dates, average all available dates in the range.
  4. Return results in chronological order with the date, daily active-user count, and average rounded to two decimal places.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Northeastern Canvas LMS user identifier
display_nameVARCHAR(100)User's display name
platform_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
user_idINTUser associated with the activity event
activity_dateDATECalendar date on which the event occurred
is_activeBOOLEANWhether the event represents active platform use
Tablesusersplatform_activity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results