AdBlock Detected!
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.
SQL UNION |
SQL > Advanced SQL >
Union
The purpose of the SQL UNION query is to combine the results of two queries together while removing duplicates. In other words, when using UNION, only unique values are returned (similar to SELECT DISTINCT). SyntaxThe syntax of UNION in SQL is as follows: [SQL Statement 1]
UNION [SQL Statement 2]; The columns selected in [SQL Statement 1] and [SQL Statement 2] need to be of the same data type for UNION to work. ExampleWe use the following tables for our example. Table Store_Information
Table Internet_Sales
To find all the dates where there is a sales transaction, we use the following SQL statement: SELECT Txn_Date FROM Store_Information
UNION SELECT Txn_Date FROM Internet_Sales; Result:
Please note that if we type "SELECT DISTINCT Txn_Date" for either or both of the SQL statement, we will get the same result set.
|
Our website is made possible by displaying ads to our visitors. Please supporting us by whitelisting our website.