SQL - Advanced Window Functions
Identify the syntax error in this query:
SELECT product, amount, amount / SUM(amount) PARTITION BY product OVER () AS pct_total FROM sales;
