SQL UNION跟UNION ALL的區別

2021-07-16 19:54:53 字數 1441 閱讀 4926

union因為要進行重複值掃瞄,所以效率低。如果合併沒有刻意要刪除重複行,那麼就使用union all

兩個要聯合的sql語句 字段個數必須一樣,而且字段型別要「相容」(一致);

如果我們需要將兩個select語句的結果作為乙個整體顯示出來,我們就需要用到union或者union all關鍵字。union(或稱為聯合)的作用是將多個結果合併在一起顯示出來。

union和union all的區別是,union會自動壓縮多個結果集合中的重複結果,而union all則將所有的結果全部顯示出來,不管是不是重複。

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

union all:對兩個結果集進行並集操作,包括重複行,不進行排序;

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

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

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

例如:

select employee_id,job_id from employees

union

select employee_id,job_id from job_history

以上將兩個表的結果聯合在一起。這兩個例子會將兩個select語句的結果中的重複值進行壓縮,也就是結果的資料並不是兩條結果的條數的和。如果希望即使重複的結果顯示出來可以使用union all,例如:

2.在oracle的scott使用者中有表emp

select * from emp where deptno >= 20

union all

select * from emp where deptno <= 30

這裡的結果就有很多重複值了。

有關union和union all關鍵字需要注意的問題是:

union 和 union all都可以將多個結果集合並,而不僅僅是兩個,你可以將多個結果集串起來。

使用union和union all必須保證各個select 集合的結果有相同個數的列,並且每個列的型別是一樣的。但列名則不一定需要相同,oracle會將第乙個結果的列名作為結果集的列名。例如下面是乙個例子:

select empno,ename from emp

union

select deptno,dname from dept

我們沒有必要在每乙個select結果集中使用order by子句來進行排序,我們可以在最後使用一條order by來對整個結果進行排序。例如:

select empno,ename from emp

union

select deptno,dname from dept

order by ename;

**:

資料分析之sql UNION與UNION ALL

union操作符用於合併兩個或多個select語句的結果集。注意 union內部的select語句必須擁有相同數量的列。列也必須擁有相似的資料型別。同時,每條select語句中的列的順序必須相同。sql union語法 select column name s from table name1 un...

多庫SQL union 查詢

select protype 型別,sum procount 數量 from select trim 未解決數量 protype,count distinct t1.c1 procount from t1 where t1.c809000021 已關閉 and t1.c700000006 and t...

SQL UNION 與 UNION ALL的區別

建立student表 if object id student is not null drop table student create table student id int primary key,name nvarchar 50 not null,score int not null 新增...