Oracle set union, union all, intersect, minus

Source: Internet
Author: User


The efficiency of oracle union, union all, intersect, and minus oracle integration is higher than that of normal ones. Test Case -- test table data www.2cto.com SQL> select stuid from zr_stu; STUID ----------- 1 2 3 4 5 6 7 7 rows selected Executed in 0.14 seconds -- table data SQL> select stuid from zr_stu where stuid> 3; STUID ----------- 4 5 6 7 www.2cto.com Executed in 0.047 seconds SQL> select stuid from zr_stu where stuid <6; STUID ----------- 1 2 3 4 5 Executed in 0.109 seconds -- union www.2cto.com SQL> select stuid from zr_stu where stuid> 4 union select stuid from zr_stu where stuid <6; STUID ---------- 1 2 3 4 5 6 7 7 rows selected Executed in 0.031 seconds -- union all SQL> select stuid from zr_stu where stuid> 4 2 union all 3 select stuid from zr_stu where stuid <6; STUID ---------- 5 6 7 1 2 3 4 5 www.2cto.com 8 rows selected Executed in 0.156 seconds -- intersect SQL> select stuid from zr_stu where stuid> 4 2 intersect 3 select stuid from zr_stu where stuid <6; STUID ---------- 5 Executed in 0.078 seconds www.2cto.com -- minus SQL> select stuid from zr_stu where stuid> 4 2 minus 3 select stuid from zr_stu where stuid <6; STUID ---------- 6 7 Executed in 0.062 seconds

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.