Oracle Database SQL — Question 106

Which statement is true about the INTERSECT operator used in compound queries?

Answer options

Correct answer: A

Explanation

The correct answer, A, is true because the INTERSECT operator does consider NULL values when determining the result set. Option B is incorrect as INTERSECT does not ignore NULLs. Option C is false because INTERSECT actually has higher precedence than UNION or UNION ALL. Lastly, option D is incorrect since multiple INTERSECT operators can be used in the same SQL statement.