Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Window Running Metrics
00:00
5 left

SQL Window Running Metrics

MediumSQL · PostgreSQL

Problem

Write a query using SQL window functions to calculate running totals and moving averages of user API requests over a trailing thirty-day window.

Use oracle_users and api_requests. Return one row for each user and calendar date on which that user made requests. The moving average should average daily request counts from the current date and the preceding 29 calendar days. Exclude requests that cannot be matched to a user.

Output

  1. Columns: user_id, user_name, request_date, daily_requests, running_total, and moving_avg_30d
  2. One row per user and request date, ordered by user_id and request_date
  3. Round moving_avg_30d to two decimal places

Schema

oracle_users
ColumnTypeDescription
user_idPKINTUnique user identifier
user_nameVARCHAR(100)Display name of the user
api_requests
ColumnTypeDescription
request_idPKINTUnique API request identifier
user_idINTUser who made the request
request_dateDATECalendar date of the API request
endpointVARCHAR(120)Requested API endpoint
Tablesoracle_usersapi_requests
Interviewer

Your question is SQL Window Running Metrics. 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.