Difference between Union and Union all in Oracle

Source: Internet
Author: User
Tags dname

If we need to display the results of two select statements as a whole, we need to use the Union or union all keywords. Union (or union) is used to display multiple results together.

The difference between Union and Union all is that union will automatically compress the repeated results in multiple result sets, while union all will display all the results, whether they are repeated or not.

Union: Perform Union operations on two result sets, excluding duplicate rows and sorting by default rules;

Union all: Perform Union operations on two result sets, including duplicate rows without sorting;

Intersect: intersection of two result sets, excluding duplicate rows, and sorting by default rules;

Minus: performs the Difference Operation on two result sets, excluding duplicate rows, and sorts the default rules at the same time.

You can specify the order by clause in the last result set to change the sorting method.

For example:

Java code
  1. Select employee_id, job_id from employees
  2. Union
  3. Select employee_id, job_id from job_history
select employee_id,job_id from employeesunionselect employee_id,job_id from job_history

The above two tables are joined together. The two examples compress the duplicate values in the results of the two select statements, that is, the result data is not the sum of the two results. If you want to use Union all even if repeated results are displayed, for example:

2. The Scott user in Oracle has the table EMP.

Java code
  1. Select * from EMP where deptno> = 20
  2. Union all
  3. Select * from EMP where deptno <= 30
select * from emp where deptno >= 20union allselect * from emp where deptno <= 30

The results here have a lot of repeated values.

Note the following when using the Union and Union all keywords:

Union and Union all can combine multiple result sets, not just two. You can concatenate multiple result sets.
When using Union and Union all, you must ensure that the results of each select set have the same number of columns, and each column has the same type. But the column names do not need to be the same. Oracle uses the column name of the first result as the column name of the result set. For example, the following is an example:

Java code
  1. Select empno, ename from EMP
  2. Union
  3. Select deptno, dname from Dept
select empno,ename from empunionselect deptno,dname from dept 

We do not need to use the order by clause in each select result set for sorting. We can use an order by clause to sort the entire result at the end. For example:

Java code
  1. Select empno, ename from EMP
  2. Union
  3. Select deptno, dname from Dept
  4. Order by ename;
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.