A large scale blog with 500+ articles was losing 10% of its total traffic month-over-month, but the team couldn’t identify which specific posts were failing until it was too late.
/* SQL: Identifying Content Decay */
SELECT
page_url,
clicks_last_90_days,
clicks_previous_90_days,
((clicks_last_90_days - clicks_previous_90_days) / NULLIF(clicks_previous_90_days, 0)) * 100 AS pct_change
FROM `search_console_data`
WHERE clicks_last_90_days < clicks_previous_90_days
AND clicks_previous_90_days > 100
ORDER BY pct_change ASC
LIMIT 10;
Evidence: Automated trend tracking that separates "Stable" assets from "Critical" revenue risks.
Strategic Shift: Transitioning from reactive "Intuition" to automated "Revenue Protection."