-
Usage of aggregates in WHERE clause is not allowed.
-
- False
- True
- NA
- NA
- NA
Correct Option: B
The usage of aggregates inside ‘WHERE’ clauses is not allowed. For example, the following statement will not work : ‘SELECT * FROM my_table WHERE attribute_name = MAX(attribute_name)’, because the MAX value is not known yet.