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 combines result sets without removing duplicates. UNION (without ALL) performs a sort and deduplication operation, which is slower. Use UNION ALL when you know rows are unique or specifically want duplicates retained.