Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Running 30-Day Average in SQL

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

Your question is Running 30-Day Average in SQL. Start with the requirements and the one table 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

GDIT's mission analytics dashboard needs a rolling view of completed transaction activity. Write a PostgreSQL query that calculates the 30-day moving average of daily completed transaction volume.

Requirements

  1. Count only transactions where status = 'completed'.
  2. Aggregate transactions by transaction_date before applying the window function.
  3. Calculate an average over the current date and the preceding 29 calendar days, producing a 30-day inclusive window.
  4. Return one row per date with completed transactions, ordered chronologically.

Schema

mission_transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
transaction_dateDATEDate the transaction occurred
statusVARCHAR(20)Transaction state, such as completed, pending, or cancelled
transaction_typeVARCHAR(30)Operational transaction category
amountNUMERIC(12,2)Transaction amount
Tablesmission_transactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results