Multiple choice technology mainframe

UNION selects only distinct value by default.

  1. True

  2. False

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

The UNION operator in SQL combines the result sets of two or more SELECT statements and automatically removes duplicate rows, selecting only distinct values by default. To retain duplicates, UNION ALL must be used. Therefore, the statement is true.