What is the difference between UNION and UNION ALL.
|
UNION removes duplicate records (where all columns in the results are the same), UNION ALL does not. There is a performance hit when using UNION vs UNION ALL, since the database server must do additional work to remove the duplicate rows, but usually you do not want the duplicates (especially when developing reports). |
|||||||||||||||
|
|
Both UNION and UNION ALL concatenate the result of two different SQLs. They differ in the way they handle duplicates. -UNION performs a DISTINCT on the result set, eliminating any duplicate rows. -UNION ALL does not remove duplicates, and it therefore faster than UNION. Note: While using this commands all selected columns need to be of the same data type. Example: If we have two tables, 1) Employee and 2) Customer 1) Employee table data:
2) Customer table data:
3) UNION Example (It removes all duplicate records):
4) UNION ALL Example (It just concatenate records, not eliminate duplicates, so it is faster than UNION):
|
|||
|
|
|
UNION removes duplicates, whereas UNION ALL does not. In order to remove duplicates the result set must be sorted, and this may have an impact on the performance of the UNION, depending on the volume of data being sorted, and the settings of various RDBMS parameters ( For Oracle PGA_AGGREGATE_TARGET with WORKAREA_SIZE_POLICY=AUTO or SORT_AREA_SIZE and SOR_AREA_RETAINED_SIZE if WORKAREA_SIZE_POLICY=MANUAL ). Basically, the sort is faster if it can be carried out in memory, but the same caveat about the volume of data applies. Of course, if you need data returned without duplicates then you must use UNION, depending on the source of your data. I would have commented on the first post to qualify the "is much less performant" comment, but have insufficient reputation (points) to do so. |
|||
|
|
from http://zengin.wordpress.com/2007/07/31/union-vs-union-all/ |
||||
|
|
UNION and UNION ALL should work on all sql servers. You should avoid of unnecessary UNIONs they are huge performance leak. As a rule of thumb use UNION ALL if you are not sure which to use. |
|||
|
|
|
union is used to select distinct values from two tables where as union all is used to select all values including duplicates from the tables |
|||
|
|
|
You can avoid duplicates and still run much faster than UNION DISTINCT (which is actually same as UNION) by running query like this:
Notice the |
|||
|
|
|
UNION The UNION command is used to select related information from two tables, much like the JOIN command. However, when using the UNION command all selected columns need to be of the same data type. With UNION, only distinct values are selected. UNION ALL The UNION ALL command is equal to the UNION command, except that UNION ALL selects all values. The difference between Union and Union all is that Union all will not eliminate duplicate rows, instead it just pulls all rows from all tables fitting your query specifics and combines them into a table. A UNION statement effectively does a SELECT DISTINCT on the results set. If you know that all the records returned are unique from your union, use UNION ALL instead, it gives faster results. |
|||
|
|
|
||||
|
|





;)– smhnaji Mar 17 at 13:57