How did revenue move month by month in 2024?
Pinned on the demo dashboard as Monthly revenue trend
SELECT strftime(CAST(o.order_date AS TIMESTAMP), '%Y-%m') AS order_month,
ROUND(SUM(o.total_amount), 2) AS revenue
FROM demo_orders o
WHERE o.order_status <> 'cancelled'
GROUP BY 1
ORDER BY 1
LIMIT 24Monthly revenue trend
Drawn from the query result aboveRevenue holds a narrow band across the year: February is the low month at 37,714.84 and September the high at 53,445.30 — about 42% above it. No month runs away from the rest.