Home > Database > Mysql Tutorial > Oracle中关于并集/交集/差集的运算

Oracle中关于并集/交集/差集的运算

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 17:26:22
Original
1218 people have browsed it

1.并集的运算 select name from test1 union [all] select name from test2; 使用union时,默认将对结果进行排序,union all则不

1.并集的运算

select name from test1

union [all]

select name from test2;

使用union时,,默认将对结果进行排序,union all则不进行排序操作,所以会消耗更少的资源;然而,union all将不进行去重的操作~

2.交集的运算

select name from test1

intersect

select name from test2;

Oracle不支持Intersect all关键字!

3.差的运算

select name from test1

minus

select name from test2;

Oracle中差的运算不同于SQL标准,在SQL标准中,我们使用以下函数进行差运算

select name from test1

except [all]

select name from test2;

linux

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template