Click here to Skip to main content
15,884,629 members
Articles / Database Development / SQL Server

SQL Server – What Exactly are UNION and UNION All?

Rate me:
Please Sign up or sign in to vote.
4.91/5 (24 votes)
26 Jan 2014CPOL4 min read 131.7K   7   8
What exactly are UNION and UNION ALL in SQL Server

In the last blog post, we discussed about COALESCE function in SQL Server. You can read that article here. In this article, we will go over UNION and UNION ALL Operators in SQL Server.

In this article, we will discuss about the following:

  • Purpose of UNION and UNION ALL
  • Differences between UNION and UNION ALL
  • Differences between JOIN and UNION

UNION and UNION ALL operators in SQL Server are used to combine the result sets of two or more SELECT queries.

Let’s understand what is meant by this with an example. We have 2 tables here, tblIndiaCustomers and tblUSCustomers. Both of these tables have identical columns – Id, Name and Email.

0.Customers

Now if we issue a select query against these 2 tables and execute them, we will get 2 separate result sets. We will get 2 rows each from tblIndiaCustomers and tblUSCustomers.

1

Now we want to combine both of these result sets into one result set. How do we do that? We can use UNION or UNION ALL Operators. Let’s first use UNION ALL and see what will happen. When we execute the query, it is going to combine the rows from tblndiaCustomers with rows from tbUSCustomers. So while using UNION ALL, we are combining the result sets from these two queries. Here in output, we will get 4 rows.

2

Then instead of using UNION ALL, just use UNION and see what will happen. Now we will get only 3 rows. While looking at the output, we can see that the duplicate record – Name: Thomas, Email: T@T.Com is eliminated. While using UNION ALL, we will get all the rows including duplicates. While using UNION Operator, the output is sorted as well.

3

What are the Differences Between UNION and UNION ALL Operators?

  1. UNION removes duplicate rows, whereas UNION ALL doesn’t.
  2. UNION has to perform distinct sort to remove duplicates, which makes it less faster than UNION ALL.

The distinct sort operation happening in UNION is time consuming. If you want to see that, you can turn on the Estimated Execution Plan in SQL Server Management Studio(SSMS). To do that, you can either press CTRL+L or you can click on Display Estimated Execution Plan icon in SSMS.

4

When we use UNION and click on this icon, we can see that the distinct sort is actually taking 63% of time.

5

On the other hand, when we use UNION ALL and click on Display Estimated Execution Plan, there is no distinct sort at all.

6

So for this reason, UNION is a little bit slower than UNION ALL.

Another important point to ponder is that for UNION and UNION ALL to work, the Number, Data types and the Order of the columns in the SELECT statements should be same. This makes sense as well. For example, write the query like below.

SQL
SELECT Id, Name From tblIndiaCustomers
UNION
SELECT Id, Name, Email From tblUSCustomers

In the above query, the first SELECT statement is giving 2 columns and the second SELECT statement is giving 3 columns. How can we combine them?! We can’t do that. So while executing the query, we will get an error.

7

It is not enough to have equal number of columns, but they should be in the right order as well. If we write a query like below, it doesn’t make any sense.

SQL
SELECT Name, Email, Id From tblIndiaCustomers
UNION
SELECT Id, Name, Email From tblUSCustomers

How can we combine Id with Email?! So while executing the query, it is trying to convert Name to integer and fails.

8

So while using UNION and UNION ALL Operators, the number of columns have to be the same, data types have to be the same and they have to be in the same order.

Sorting the Results of UNION and UNION ALL

  • ORDER BY clause should be used only on the last SELECT statement in the UNION query.

10

While executing the above query, we will get the results sorted by Name. If we use ORDER BY clause in the first query, let’s see what is going to happen. While executing the query, it will give an error stating Incorrect syntax near the keyword ‘UNION’.

11

This makes sense as well. How does UNION ALL work? It will take the rows from the first table and combine them with the rows from the second table. It doesn’t make sense to take sorted rows from the first table and combine. When they are combined, the result will again become unsorted. That’s why, after getting all the results, sort them using ORDER BY clause. So ORDER BY should be with the last SELECT statement.

Differences Between JOIN and UNION

  • UNION combines the result set of two or more select queries into a single result set which includes all the rows from all the queries in the UNION, whereas JOIN retrieves data from two or more tables based on logical relationships between the tables.
  • In short, UNION combines rows from 2 or more tables, where JOIN combines columns from 2 or more tables.

Reference: Arun Ramachandran (http://BestTEchnologyBlog.Com)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
India India
Arun Ramachandran is a Software Engineer having hands on experience in different Microsoft Technologies who is presently working in Experion Technologies, India. He has written over 95 articles on the subject on his blog at http://BestTEchnologyBlog.com. Along with 3 years of hands on experience he holds a Master of Computer Applications degree from Cochin University of Science & Technology (CUSAT).

Comments and Discussions

 
PraiseExcellent Pin
MarceNet2-Mar-17 6:50
MarceNet2-Mar-17 6:50 
Questionvote of 2 Pin
VijayPd22-May-16 0:35
VijayPd22-May-16 0:35 
GeneralMy vote of 5 Pin
Bhavin Vijay Mehta1-Apr-16 2:00
Bhavin Vijay Mehta1-Apr-16 2:00 
QuestionThanks lot Pin
anil waditake21-Dec-14 2:29
anil waditake21-Dec-14 2:29 
QuestionThanks! Pin
karthik_bv216-Nov-14 21:06
karthik_bv216-Nov-14 21:06 
GeneralMy vote of 5 Pin
Animesh Datta7-Aug-14 23:36
Animesh Datta7-Aug-14 23:36 
GeneralMy vote of 5 Pin
Sibeesh Venu4-Aug-14 0:41
professionalSibeesh Venu4-Aug-14 0:41 
Questionvery good explanation with screens Pin
binabic27-Jan-14 4:20
binabic27-Jan-14 4:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.