Oracle Database SQL — Question 184

Which two statements are true about the WHERE and HAVING clauses in a SELECT statement? (Choose two.)

Answer options

Correct answer: C, D

Explanation

The correct answer is C and D. The HAVING clause is indeed used with aggregate functions, making C correct, while D accurately states that the WHERE clause filters rows before any grouping occurs. Options A and B are incorrect as they misrepresent the functionality of these clauses, and option E is not a requirement for using HAVING.