Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Rolling 30-Day Average Dosage
00:00
5 left

SQL Rolling 30-Day Average Dosage

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the average chemical dosage per well over a rolling 30-day window.

Use the wells and chemical_dosages tables. Include dosage records associated with a known well, and exclude records with no matching well.

Output

  1. One row per dosage record associated with a known well
  2. Columns: well_name, dosed_at, and rolling_avg_dosage
  3. The average includes non-null dosage values from the current record and the preceding 29 calendar days for the same well
  4. Round rolling_avg_dosage to two decimal places and order by well_name, dosed_at, and dosage_id

Schema

wells
ColumnTypeDescription
well_idPKINTUnique identifier for the well
well_nameVARCHAR(100)Operational name of the well
field_nameVARCHAR(100)Oilfield containing the well
basinVARCHAR(100)Production basin
chemical_dosages
ColumnTypeDescription
dosage_idPKINTUnique identifier for a dosage measurement
well_idINTWell receiving the chemical dosage
dosed_atTIMESTAMPDate and time of the dosage measurement
chemical_nameVARCHAR(100)Chemical product used
dosage_litersNUMERIC(10,2)Chemical dosage amount in liters
Tableswellschemical_dosages
Interviewer

Your question is SQL Rolling 30-Day Average Dosage. 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.