Introduction
The UNION keyword in TSQL is used to combine two datasets. The two datasets must have the same number of columns in them and use the same datatypes. The datasets must also have the columns in the same comparative order. The UNION T-SQL Expression places the UNION keyword between two datasets. By using the UNION keyword between two datasets, TSQL will return a new dataset that contains what is in the first dataset and also what is in the second dataset. All the records in the new dataset that is created using the UNION keyword, will be distinct. That means that if there are multiple records in datasets that have exactly the same values, the resulting dataset will only contain one those records with those values. The UNION keyword is often used in this fashion:
-
SELECT col1,col2,coln... FROM table1 '[DataSet #1]
-
UNION
-
SELECT col1,col2,coln... FROM table2 '[DataSet #2]
|
| Copyright 2012 - TSQLTutorials.com |
|