|
22.Which of the following matches are correct?
A. UNION - returns all rows selected by either query.
B. UNION ALL - returns all rows selected by either query, including all duplicates.
C. INTERSECT - returns all distinct rows selected by both queries.
D. MINUS - returns all distinct rows selected by the first query but not the second.
Ans:A,B,C,D |
|