|
* Union
:
Used to combine the results of two or more SELECT statements into a single result set. UNION Does not Display Duplicate Records.
|
* Union ALL
:
Like Union but it Displays Duplicate Records.
|
* Except
:
Returns any distinct values from the First query that are not also found on the Second query.
|
* Intersect
:
Returns Common/Similar Rows from both Tables.
|