-
Which operators test whether a subquery returns any rows?
-
- ABSENT
- IN and NOT IN
- EXISTS and NOT EXISTS
- PRESENT
- None of these
Correct Option: C
The operators ‘EXISTS’ and ‘NOT EXISTS’ operators only test whether a subquery returns any rows. If it returns a row, ‘EXISTS’ results into true and ‘NOT EXISTS’ results into false.