What is the difference between UNION and UNIONALL?
Answer Posted / haroon nazir.s
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.
Example:
Table 1 : First,Second,Third,Fourth,Fifth
Table 2 : First,Second,Fifth,Sixth
Result Set:
UNION: First,Second,Third,Fourth,Fifth,Sixth (This will
remove duplicate values)
UNION ALL:
First,First,Second,Second,Third,Fourth,Fifth,Fifth,Sixth,Sixth
(This will repeat values)
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Does table partitioning improve performance?
What are the difference between data mart and data warehouse? : sql server analysis services, ssas
What is correlated subquery in sql server?
What is logshipping and its purpose?
How to check status of stored procedure in sql server?
State the difference between union and union all?
Tell me about pre-defined functions of sql?
How to connect sql server management studio express to sql server 2005 express?
Why do we use sql limitations? Which constraints can we use while making a database in sql?
Disadvantages of the indexes?
What is sql server management studio? : sql server management studio
Different types of keys in SQL?
Why de-normalization required?
Explain what are magic tables in sql server?
You want to check the syntax of a complicated update sql statement without executing it. What command should you use?