🚧 HAVING vs WHERE

🚧 Coming soon: Correct placement of filters and the effect on results/plan shape.

-- Placeholder example
SELECT CustomerID, SUM(TotalDue) AS Revenue
FROM dbo.Sales
GROUP BY CustomerID
HAVING SUM(TotalDue) > 1000;