Multiple choice technology databases What is the difference between Union and Union all statements Union all used for combining multiples queries using single union all There is no difference the union will eliminate duplicate records in result set but, union all will print the duplicate records Union all is used for select with multiple columns Reveal answer Fill a bubble to check yourself C Correct answer Explanation The UNION operator combines query results and eliminates duplicate rows. Conversely, the UNION ALL operator combines all rows from the queries, retaining duplicate rows in the final result set.