Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 7-Day Click-Through Rate

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

Your question is Rolling 7-Day Click-Through Rate. Start with the requirements and the one table 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

Cisco monitors ad engagement across its digital advertising surfaces. Given ad event data, write a PostgreSQL query that calculates each user's rolling 7-day click-through rate by event date.

Requirements

  1. Aggregate daily clicks and impressions per user.
  2. Treat a click-through rate as clicks divided by impressions, returning NULL when the rolling impression count is zero.
  3. Build a complete calendar for each user so the 7-day window represents calendar days, including days without events.
  4. Use a window function to calculate rolling clicks, impressions, and CTR over the current date plus the six preceding calendar dates.
  5. Return only dates on which the user had at least one event, ordered by user_id and event_date.

Schema

ad_events
ColumnTypeDescription
event_idPKINTUnique ad event identifier
user_idINTCisco user identifier
event_tsTIMESTAMPTZTimestamp at which the ad event occurred
event_typeVARCHAR(20)Event classification, such as click or impression
Tablesad_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results