Exam 1z0-071 All QuestionsBrowse all questions from this exam
Question 154

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

    Correct Answer: A

    The INTERSECT operator in SQL is used to return the common records between two select statements. It processes NULLs in the selected columns, meaning it treats NULLs as equivalent and includes them in the result if they appear in both queries. Therefore, the correct statement about the INTERSECT operator is that it processes NULLs in the selected columns.

Discussion
lucemqyOption: A

A definitely A it does not ignore NULL values

kaplanekOption: A

tested in sql dev

Cecilia_SosoOption: A

INTERSECT DOES NOT IGNORE NULLS

DarnunOption: A

https://www.examtopics.com/discussions/oracle/view/8224-exam-1z0-071-topic-1-question-239-discussion/

tonII20IIOption: A

A must be correct select null as nulltest from dual intesect select null as nulltest1 from dual it shows one row

zouve

select null as nulltest from dual intersect select null as nulltest1 from dual