What is the difference between Join and Union? Can I get a sample?
|
similary trivial example of
|
||||
|
|
|
UNION combines the results of two or more queries into a single result set that includes all the rows that belong to all queries in the union. By using JOINs, you can retrieve data from two or more tables based on logical relationships between the tables. Joins indicate how SQL should use data from one table to select the rows in another table. The UNION operation is different from using JOINs that combine columns from two tables. UNION Example:
Output:
JOIN Example:
This will output all the rows from both the tables for which the condition |
||||
|
|
|
Union makes two queries look like one. Joins are for examining two or more tables in a single query statememt |
|||
|
|
|
They're completely different things. A Join allows you to relate similar data in different tables. A Union returns the results of two different queries as a single recordset. |
|||
|
|
JOIN:A Join is used for displaying columns with the same or different names from different tables. The output displayed will have all the columns shown individually. i.e. The columns will be aligned next to each other. UNION:The UNION set operator is used for combining data from two tables which have columns with the same datatype. When a UNION is performed the data from both tables will be collected in a single column having the same datatype. For eg: See the two tables shown below:
Now for performing a JOIN type the query shown below
That is a join. UNION means that you have to tables or resultset with the same amount and type of columns and you add this to tables/resultsets together. Look at this example:
Hope this helps! |
||||
|
|
|
Remember that union will merge results (mssql to be sure)(feature or bug?)
id,value 1,3
id,value,id,value 1,3,1,3 |
|||||
|