what is the difference between union and union all
Answer Posted / vishal
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.
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
Is sql better than access?
What is the basic form of sql query?
What does stand for in sql?
Is sql better than excel?
How can you load microsoft excel data into oracle? : aql loader
what happens if null values are involved in expressions? : Sql dba
How can we connect an Android App to an Oracle database and use the PL/SQL procedural code?
what is the command used to fetch first 5 characters of the string? : Sql dba
What is procedure and function in sql?
What is data abstraction in sql?
Write an sql query to select all records from the table?
What is the starting oracle error number?
What is synchronized subquery?
What is sql and how does it work?
Is sql procedural language?