InterviewSolution
Saved Bookmarks
| 1. |
Which of these operators perform similar operations like ALL and ANY?(a) SOME(b) MANY(c) SELECT(d) GROUP |
|
Answer» Correct option is (a) SOME Explanation: The operators ‘SOME’, ‘ALL’ and ‘ANY’ perform operations on columns. They can filter column results. They are used in conjunction with a comparison operator in order to test the result of a column subquery. |
|