The UNION operator is used to combine the result-set of two or more SELECT statements.
Notice that each SELECT statement within the UNION must have the same number of columns. The columns must also have similar data types. Also, the columns in each SELECT statement must be in the same order.
SQL UNION Syntax
SELECTcolumn_name(s)FROMtable1 UNION SELECTcolumn_name(s)FROMtable2;
Note:The UNION operator selects only distinct values by default.
SQL UNION ALL Syntax
SELECTcolumn_name(s)FROMtable1 UNION ALL SELECTcolumn_name(s)FROMtable2;
Note : The UNION operator selects All (duplicate values also)values by default.
For Exp:
Union
SELECT City FROM Customer UNION SELECT City FROM Supplier ORDER BY City
Result :
Result:
Union All
SELECT City FROM Customer UNION SELECT City FROM Supplier ORDER BY City
Liked By
Write Answer
SQL UNION Operator
Join MindStick Community
You have need login or register for voting of answers or question.
Anonymous User
03-Nov-2015The UNION operator is used to combine the result-set of two or more SELECT statements.
Notice that each SELECT statement within the UNION must have the same number of columns. The columns must also have similar data types. Also, the columns in each SELECT statement must be in the same order.
SQL UNION Syntax
SELECT column_name(s) FROM table1
UNION
SELECT column_name(s) FROM table2;
Note: The UNION operator selects only distinct values by default.
SQL UNION ALL Syntax
SELECT column_name(s) FROM table1
UNION ALL
SELECT column_name(s) FROM table2;
Note : The UNION operator selects All (duplicate values also) values by default.
For Exp:
Union
Result :
Union All