Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Ad Fill Rate Day-Over-Day Drop
00:00
5 left

Ad Fill Rate Day-Over-Day Drop

MediumSQL · PostgreSQL

Problem

Given a table of ad fill_rates, how would you return the records where fill_rate drops by more than 10% compared to the previous day?

Assume fill_rate is stored as a decimal between 0 and 1, and comparisons are made independently for each ad. A prior record must exist for the immediately preceding calendar day.

Output

  1. One row per qualifying ad and date, with ad_id, rate_date, fill_rate, previous_day_fill_rate, and drop_percent.
  2. Include only drops strictly greater than 10%, ordered by ad_id and rate_date ascending.

Schema

ad_fill_rates
ColumnTypeDescription
rate_idPKINTUnique fill rate record identifier
ad_idVARCHAR(50)Advertisement identifier
rate_dateDATECalendar date of the fill rate
fill_rateNUMERIC(6,4)Ad fill rate stored as a decimal between 0 and 1
Tablesad_fill_rates
Interviewer

Your question is Ad Fill Rate Day-Over-Day Drop. Start with the requirements and the one table 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.