Home » MYSQL » MySQL Database Operations » Question
  1. Usage of aggregates in WHERE clause is not allowed.
    1. False
    2. True
    3. NA
    4. NA
    5. 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.



Your comments will be displayed only after manual approval.