Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling Positivity With SQL Window Functions
00:00
5 left

Rolling Positivity With SQL Window Functions

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions to compute a rolling 7-day average of test positivity by patient cohort.

Use the patients and test_results tables. Exclude tests with missing results or dates. Calculate positivity per cohort and test date, then return the rolling average over the current date and preceding six calendar days.

Output

  1. One row per cohort and test date with valid tests
  2. Columns: cohort, test_date, test_count, positive_tests, positivity_rate, and rolling_7_day_avg
  3. Include only non-null cohorts, order by cohort, then test_date

Schema

patients
ColumnTypeDescription
patient_idPKINTUnique patient identifier
cohortVARCHAR(50)Patient cohort label
test_results
ColumnTypeDescription
test_idPKINTUnique test identifier
patient_idINTPatient who received the test
test_dateDATEDate the test was performed
test_resultVARCHAR(20)Test outcome, such as positive or negative
Tablespatientstest_results
Interviewer

Your question is Rolling Positivity With SQL Window Functions. 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.