Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Rolling Window Analytics
00:00
5 left

SQL Rolling Window Analytics

MediumSQL · PostgreSQL

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
Interviewer

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