SQL - Common Table Expressions (CTEs)
Identify the error in this SQL snippet:
WITH SalesCTE AS SELECT ProductID, SUM(Quantity) FROM Sales GROUP BY ProductID SELECT * FROM SalesCTE;
