Multiple choice technology databases

WHERE keyword could not be used with aggregate functions.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

In SQL, aggregate functions like COUNT, SUM, AVG cannot be used directly in the WHERE clause because WHERE filters rows before aggregation. Instead, use HAVING after GROUP BY to filter based on aggregate results. This statement accurately describes that limitation.