Oracle中的Union、Union All、Intersect、Minus

來源:互聯網
上載者:User

眾所周知的幾個結果集集合操作命令,今天詳細地測試了一下,發現一些問題,記錄備考。

假設我們有一個表Student,包括以下欄位與資料:

drop table student;

create table student
(
id int primary key,
name nvarchar2(50) not null,
score number not null
);

insert into student values(1,'Aaron',78);
insert into student values(2,'Bill',76);
insert into student values(3,'Cindy',89);
insert into student values(4,'Damon',90);
insert into student values(5,'Ella',73);
insert into student values(6,'Frado',61);
insert into student values(7,'Gill',99);
insert into student values(8,'Hellen',56);
insert into student values(9,'Ivan',93);
insert into student values(10,'Jay',90);

commit;

  • Union和Union All的區別。

select *
from student
where id < 4

union

select *
from student
where id > 2 and id < 6

結果將是

1    Aaron    78
2    Bill    76
3    Cindy    89
4    Damon    90
5    Ella    73

如果換成Union All串連兩個結果集,則返回結果是:

1    Aaron    78
2    Bill    76
3    Cindy    89
3    Cindy    89
4    Damon    90
5    Ella    73

可以看到,Union和Union All的區別之一在於對重複結果的處理。

接下來我們將兩個子查詢的順序調整一下,改為

--Union

select *
from student
where id > 2 and id < 6

union

select *
from student
where id < 4

看看執行結果是否和你期望的一致?

--Union All

select *
from student
where id > 2 and id < 6

union all

select *
from student
where id < 4

那麼這個呢?

據此我們可知,區別之二在於對排序的處理。Union All將按照關聯的次序組織資料,而Union將進行依據一定規則進行排序。那麼這個規則是?我們換個查詢方式看看:

select score,id,name
from student
where id > 2 and id < 6

union

select score,id,name
from student
where id < 4

結果如下:

73    5    Ella
76    2    Bill
78    1    Aaron
89    3    Cindy
90    4    Damon

和我們預料的一致:將會按照欄位的順序進行排序。之前我們的查詢是基於id,name,score的欄位順序,那麼結果集將按照id優先進行排序;而現在新的欄位順序也改變了查詢結果的排序。並且,是按照給定欄位a,b,c...的順序進行的order by。即結果是order by a,b,c...........的。我們看下一個查詢:

select score,id,name
from student
where id > 2

union

select score,id,name
from student
where id < 4

結果如下:

56    8    Hellen
61    6    Frado
73    5    Ella
76    2    Bill
78    1    Aaron
89    3    Cindy
90    4    Damon
90    10    Jay
93    9    Ivan
99    7    Gill

可以看到,對於score相同的記錄,將按照下一個欄位id進行排序。如果我們想自行控制排序,是不是用order by指定就可以了呢?答案是肯定的,不過在寫法上有需要注意的地方:

select score,id,name
from student
where id > 2 and id < 7

union

select score,id,name
from student
where id < 4

union

select score,id,name
from student
where id > 8
order by id desc

order by子句必須寫在最後一個結果集裡,並且其定序將改變操作後的排序結果。對於Union、Union All、Intersect、Minus都有效。

=================================================================================================================

Intersect和Minus的操作和Union基本一致,這裡一起總結一下:

Union,對兩個結果集進行並集操作,不包括重複行,同時進行預設規則的排序;

Union All,對兩個結果集進行並集操作,包括重複行不進行排序

Intersect,對兩個結果集進行交集操作,不包括重複行,同時進行預設規則的排序;

Minus,對兩個結果集進行差操作,不包括重複行,同時進行預設規則的排序。

可以在最後一個結果集中指定Order by子句改變排序方式。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.