What is the Difference Between UNION and UNION ALL in SQL Server ?

The UNION command is used to select related information from two tables, much like the JOIN command. However, when using the UNION command all selected columns need to be of the same data type. With UNION, only distinct values are selected.

UNION ALL command is equal to the UNION command, except that UNION ALL selects all values.

The difference between UNION and UNION ALL is that UNION ALL will not eliminate duplicate rows, instead, it just pulls all rows from all the tables fitting your query specifics and combines them into a table.



You May Interest

MS SQL Finding Which Tables a Column Name is In

What are the Various Limitations of the Views in SQL Server ?

Using Trim Function in MS SQL

How to Show Line Numbers in MS SQL Server ?

What is Log Shipping in SQL Server ?