Oracle 中Union、Union All、Intersect、Minus(並,交,差)
原文連結地址:http://hi.baidu.com/zqccrhlnumeostr/item/b4fda1dbeaac71e5785daa68
眾所周知的幾個結果集集合操作命令,今天詳細地測試了一下,發現一些問題,記錄備考。
假設我們有一個表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子句改變排序方式。
注: 在 sqlserver中求 差集 是用 except
相關文章
- ORACLE中union/union all/Intersect/Minus用法Oracle
- Oracle中的Union、Union All、Intersect、MinusOracle
- sql_intersect交集_minus差集_並集union_union allSQL
- Oracle的集合操作(union、union all、intersect、minus集合函式)Oracle函式
- sql中union和union allSQL
- 【SQL】SELECT語句中集合運算子 UNION/INTERSECT/MINUSSQL
- sql中union和union all的用法SQL
- sql中UNION和UNION ALL的區別SQL
- union all和union的區別
- 理解full outer jion,union,union all
- union和union all的區別
- Union與Union All的區別
- union 和union all 使用區別
- MySQL學習(五) UNION與UNION ALLMySql
- 查詢集合操作union與union all
- 【SQL】UNION ALL 與UNION 的區別SQL
- SQL UNION 和 UNION ALL 操作符SQL
- SQL Union和SQL Union All用法(轉)SQL
- `FULL JOIN` 和 `UNION ALL`
- SQL Server中的集合運算: UNION, EXCEPT和INTERSECTSQLServer
- SQL UNION 操作符 和 UNION ALL 操作符SQL
- Union和Union All到底有什麼區別
- Oracle union all 不走索引的優化Oracle索引優化
- WPF Path GeometryCombineMode Union, Exclude,Intersect,Xor
- union all 最佳化案例
- MySQL實現差集(Minus)和交集(Intersect)MySql
- 並查集(Union Find)並查集
- sql_union all_列別名SQL
- MYSQL學習筆記24: 多表查詢(聯合查詢,Union, Union All)MySql筆記
- UNION效率比UNION ALL效率高——SQL優化之Everything is possibleSQL優化
- 表連線 join和(+)、union和uion allUI
- 簡單測試在儲存過程中臨時表與union all的效能差別儲存過程
- 【轉】UNION效率比UNION ALL效率高——SQL優化之Everything is possibleSQL優化
- 【SQL 學習】INTERSECT,MINUS ,SQL
- union用法
- oracle知識整理(1) union和union all的區別,left join和right join的區別(各種join的區別)Oracle
- 查詢集合操作intersect與minus
- Oracle優化案例-union代替or(九)Oracle優化