• 18. 1. 2020
  • Ing. Jan Zedníček - Data Engineer & Controlling
  • 0

UNION operator makes it possible to connect 2 results of query and remove all existing duplicities in them. In other words, operator actually performs DISTINCT (like SELECT DISTINCT) in final unification of records.

SQL UNION Syntax

SELECT Column
FROM dbo.Table
WHERE Condition

     UNION

SELECT Column
FROM dbo.Table
WHERE Condition;

Syntax is same as in all Set operators. Result of unification is all records from both tables – If there is a column (or columns) with identical value in both tables, only unique value will be the result. UNION Operator performs unification and removes duplicities

SQL UNION Example

Let’s have a table with a list of products

SQL UNION

We will perform unification of 2 queries to demonstrate my point:

  • first query – records where Product Key (Primary key) is lower than 10
  • second query – records where Product Key (Primary key) is lower than 5

Script:

SELECT [ProductKey], [EnglishProductName]
FROM [AdventureWorksDW2014].[dbo].[DimProduct]
WHERE [ProductKey]<=10

      UNION

SELECT [ProductKey], [EnglishProductName]
FROM [AdventureWorksDW2014].[dbo].[DimProduct]
WHERE [ProductKey]<=5;

Script result:

SQL UNION Výsledek

Rate this post

Ing. Jan Zedníček - Data Engineer & Controlling

My name is Jan Zedníček and I have been working as a freelancer for many companies for more than 10 years. I used to work as a financial controller, analyst and manager at many different companies in field of banking and manufacturing. When I am not at work, I like playing volleyball, chess, doing a workout in the gym.

🔥 If you found this article helpful, please share it or mention me on your website

Leave a Reply

Your email address will not be published. Required fields are marked *