Multiple choice technology databases UNION vs. UNION ALL UNION only selects distinct values, UNION ALL selects all values (excluding ?duplicates)? UNION ALL only selects distinct values, UNION selects all values (including ?duplicates)? UNION only selects distinct values, UNION ALL selects all values (including ?duplicates)? UNION ALL only selects distinct values, UNION selects all values (excluding ?duplicates)? Reveal answer Fill a bubble to check yourself C Correct answer Explanation UNION removes duplicate rows from the combined result set, while UNION ALL keeps all rows including duplicates. UNION ALL is faster because it skips the duplicate elimination step.