Thursday, April 28, 2016

Oracle UNION VS UNION ALL

UNION removes duplicate records (where all columns in the results are the same), UNION ALL does not.

There is a performance hit when using UNION vs UNION ALL, since the database server must do additional work to remove the duplicate rows,
but usually you do not want the duplicates (especially when developing reports).
 

No comments:

Post a Comment