Which two statements are true regarding multiple-row subqueries?

Which two statements are true regarding multiple-row subqueries? (Choose two.)

Which two statements are true regarding multiple-row subqueries? (Choose two.)

A.
They can contain group functions.

B.
They always contain a subquery within a subquery.

C.
They use the < ALL operator to imply less than the maximum.

D.
They can be used to retrieve multiple rows from a single table only.

E.
They should not be used with the NOT IN operator in the main query if NULL is likely to be a part of the result of the subquery.



Leave a Reply 6

Your email address will not be published. Required fields are marked *


miriam

miriam

i think C is correct. So why is anwer E correct?

miriam

miriam

why is E correct? Not In with result NULL

user

user

The null value affects the outcome of the NOT IN operator.

user

user

< ANY is less than maximum

TNK

TNK

<ANY is less than minimum

eg:5<ALL(10,30,50)
ALL is equal to AND operator

mr_tienvu

mr_tienvu

Correct answer is AE