Problems / Month-over-Month Growth / Editorial
LAG(revenue) OVER (ORDER BY month_date)
(current - previous) / previous * 100
Month-over-month growth is one of the most common business metrics. The LAG() window function makes this computation clean and efficient compared to self-join alternatives.
LAG()
Solve Month-over-Month Growth yourself →