SQL > Advanced SQL > UnionThe purpose of the SQL UNION query is to combine the results of two queries together. In this respect, UNION is somewhat similar to JOIN in that they are both used to related information from multiple tables. One restriction of UNION is that all corresponding columns need to be of the same data type. Also, when using UNION, only distinct values are selected (similar toSELECT DISTINCT). The syntax is as follows:
[SQL Statement 1]
Say we have the following two tables,UNION [SQL Statement 2]; Table Store_Information
SELECT Txn_Date FROM Store_Information
Result:UNION SELECT Txn_Date FROM Internet_Sales;
|
Saturday, 13 December 2014
SQL UNION
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment