Multiple choice technology databases deference between union and union all Union all will remove the duplicate rows from the result set while Union does'nt Union will remove the duplicate rows from the result set while Union all does'nt Both Union and Union all will remove duplicate rows from result set All of the above Reveal answer Fill a bubble to check yourself B Correct answer Explanation The UNION operator combines the results of two queries and removes duplicate rows, whereas UNION ALL combines the results and includes all duplicates, making UNION slower but cleaner.