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.
page_name, week_start, previous_conversion_rate, conversion_rate, and drop_percentage_points.drop_percentage_points descending, then page_name ascending.| Column | Type | Description |
|---|---|---|
| metric_idPK | INT | Unique weekly metric record identifier |
| page_name | VARCHAR(255) | Page being measured |
| week_start | DATE | Start date of the reporting week |
| visits | INT | Number of page visits during the week |
| conversions | INT | Number of conversions attributed to the page |