Difference between UNION and UNION ALL.
Options
- UNION ALL is no longer supported in sql server 2000 onward
- UNION returns only unique records from both tables. UNION ALL returns all records from both tables
- Both a and b
CORRECT ANSWER : UNION returns only unique records from both tables. UNION ALL returns all records from both tables
Write your comments