Multiple choice technology databases

The UNION ALL operator does not eliminate duplicate selected rows from the result set

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

UNION ALL returns all rows from both queries including duplicates. UNION removes duplicates, while UNION ALL keeps them, making it faster when duplicates don't matter.