Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Rolling Window Analytics

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

Your question is SQL Rolling Window Analytics. 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

The U.S. Food and Drug Administration uses the FDA Adverse Event Reporting System, or FAERS, to monitor reported adverse events. Write a PostgreSQL query that summarizes oncology-related reports by month for calendar year 2024.

Requirements

  1. Join FAERS reports to their reported drug products and retain only products whose therapeutic_area is Oncology.
  2. Count adverse event reports for each calendar month from January through December 2024.
  3. Calculate a running total of reports ordered chronologically.
  4. Calculate a twelve-month moving average using the current month and up to the previous eleven monthly observations. Return results in chronological order.

Schema

faers_reports
ColumnTypeDescription
report_idPKBIGINTUnique FDA FAERS report identifier
drug_product_idINTReferenced drug product identifier
received_dateDATEDate FDA received the report
report_sourceVARCHAR(40)Source of the adverse event report
faers_drug_products
ColumnTypeDescription
drug_product_idPKINTUnique reported drug product identifier
product_nameVARCHAR(120)Reported drug product name
therapeutic_areaVARCHAR(60)Therapeutic area associated with the product
Tablesfaers_reportsfaers_drug_products
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results