Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Top Pages by Conversion Drop
00:00
5 left

SQL Top Pages by Conversion Drop

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify the top three pages with the largest week-over-week drop in conversion rate.

Use the page_weekly_metrics table. Treat conversion rate as conversions divided by visits, compare consecutive weekly records, and return each page's largest observed decline.

Output

  1. One row per page, with at most three rows.
  2. Columns: page_name, week_start, previous_conversion_rate, conversion_rate, and drop_percentage_points.
  3. Include only positive declines, ordered by drop_percentage_points descending, then page_name ascending.

Schema

page_weekly_metrics
ColumnTypeDescription
metric_idPKINTUnique weekly metric record identifier
page_nameVARCHAR(255)Page being measured
week_startDATEStart date of the reporting week
visitsINTNumber of page visits during the week
conversionsINTNumber of conversions attributed to the page
Tablespage_weekly_metrics
Interviewer

Your question is SQL Top Pages by Conversion 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.