Oracle的集合操作(union、union all、intersect、minus集合函式)
Oracle中的集合操作用於多條select語句合併結果。用於集合操作的函式如下:
union 並集 去重 //預設有排序操作
union all 並集 不去重 //預設不排序
intersect 交集 //並且去重排序
minus 差集 // 前表中有,後表中沒有的差集
1.union
A集合和B集合的合併,但去掉兩集合重複的部分 會排序。
示例:
select deptno,ename from emp where deptno in (20,30) union select deptno,ename from emp where deptno in (20,10); DEPTNO ENAME ---------- ---------- 10 CLARK 10 KING 10 MILLER 20 ADAMS 20 FORD 20 JONES 20 SCOTT 20 SMITH 30 ALLEN 30 BLAKE 30 JAMES 30 MARTIN 30 TURNER 30 WARD 14 rows selected.
2.union all
A集合和B集合的合併,不去重,不排序。
示例:
select deptno,ename from emp where deptno in (20,30) union all select deptno,ename from emp where deptno in (20,10); DEPTNO ENAME ---------- ---------- 20 SMITH 30 ALLEN 30 WARD 20 JONES 30 MARTIN 30 BLAKE 20 SCOTT 30 TURNER 20 ADAMS 30 JAMES 20 FORD 20 SMITH 20 JONES 10 CLARK 20 SCOTT 10 KING 20 ADAMS 20 FORD 10 MILLER 19 rows selected.
3.intersect
兩個集合的交集部分,排序並去重。
示例:
select deptno,ename from emp where deptno in (20,30) intersect select deptno,ename from emp where deptno in (20,10); DEPTNO ENAME ---------- ---------- 20 ADAMS 20 FORD 20 JONES 20 SCOTT 20 SMITH 5 rows selected
4.minus
取兩個集合的差集,A集合中存在,B集合中不存在的資料(取A集合中B集合不存在的資料) 去重。
示例:
select deptno,ename from emp where deptno in (20,30) minus select deptno,ename from emp where deptno in (20,10); DEPTNO ENAME ---------- ---------- 30 ALLEN 30 BLAKE 30 JAMES 30 MARTIN 30 TURNER 30 WARD 6 rows selected.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/30484956/viewspace-2684310/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- SQL Server中的集合運算: UNION, EXCEPT和INTERSECTSQLServer
- union all和union的區別
- sql中union和union all的用法SQL
- union 和union all 使用區別
- union和union all 關鍵字
- sql中UNION和UNION ALL的區別SQL
- MySQL學習(五) UNION與UNION ALLMySql
- WPF Path GeometryCombineMode Union, Exclude,Intersect,Xor
- `FULL JOIN` 和 `UNION ALL`
- union all 最佳化案例
- Oracle 集合操作Oracle
- MYSQL學習筆記24: 多表查詢(聯合查詢,Union, Union All)MySql筆記
- oracle知識整理(1) union和union all的區別,left join和right join的區別(各種join的區別)Oracle
- 常用函式集合函式
- Oracle優化案例-union代替or(九)Oracle優化
- Kotlin 集合函式式ApiKotlin函式API
- union用法
- union注入
- Python的字典、集合和函式Python函式
- OceanBase 金融專案最佳化案例(union all 改寫)
- frozenset凍結集合函式函式
- 集合與函式入門函式
- Oracle優化案例-又見union代替or(二十)Oracle優化
- 銀彈谷V平臺VSQL使用distinct與union all使用SQL
- MySQL中使用or、in與union all在查詢命令下的效率對比MySql
- PHP 自定義函式用法及常用函式集合PHP函式
- union存取低高位
- union和enum使用
- union 聯合體
- 04 - Mongdb的集合操作
- 【Java】【集合】collection介面常見方法、集合轉陣列toArray()、帶ALL的方法Java陣列
- MySQL, Incorrect usage of UNION and ORDER BYMySql
- 組合查詢(UNION)
- [CF1517F] Union
- 並查集(Union Find)並查集
- Union Find程式碼塊
- sql注入之union注入SQL
- msyql jion 和 union 的區別