Which clause cannot be used with "aggregate functions" ?
GROUP BY
SELECT
WHERE
Both (1) and (3)
Answer
WHERE
Reason — Aggregate functions cannot be used with the WHERE clause in SQL because the WHERE clause filters rows before any grouping or aggregation occurs.