1. 程式人生 > >oracle 將多個查詢結果合併

oracle 將多個查詢結果合併

       首先要區分一個概況,多個查詢結果分兩種,一種是一條sql查詢多個結果,還有一種是多條sql語句查詢出多個結果。

       先看第一個,一條語句查詢出多個結果,將多個結果合併成一條記錄:

       在oracle中有一個wm_concat()函式。

oracle wm_concat(column)函式使我們經常會使用到的,下面就教您如何使用oraclewm_concat(column)函式實現欄位合併

如:

shopping:

-----------------------------------------

u_id       goods            num

------------------------------------------

1                蘋果                2

2                 梨子               5

1                 西瓜               4

3                 葡萄               1

3                香蕉                1

1               橘子                 3

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

想要的結果為:

--------------------------------

u_id          goods_sum

____________________

1              蘋果,西瓜,橘子

2              梨子

3              葡萄,香蕉

---------------------------------

select u_id, wmsys.wm_concat(goods) goods_sum   from shopping   group by u_id  

想要的結果2:

--------------------------------

u_id          goods_sum

____________________

1              蘋果(2斤),西瓜(4斤),橘子(3斤)

2              梨子(5斤)

3              葡萄(1斤),香蕉(1斤)

---------------------------------

使用oracle wm_concat(column)函式實現:

select u_id, wmsys.wm_concat(goods || '(' || num || '斤)' ) goods_sum   from shopping   group by u_id。

接下來看將多個語句的查詢結果合併:

oracle 中有union() union all()函式:

下面我舉個栗子:

對這個概念理解可能會有些模糊。我們通過例項來講解,首先建立一個表Student,插入一些相應的測試資料。sql語句如下:

複製程式碼

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;

複製程式碼

3、測試 union 命令的結果集,sql語句如下:

複製程式碼

select *

from student

where id < 4

union

select *

from student

where id > 2 and id < 6

複製程式碼

4、結果將是:

      1    Aaron    78

      2    Bill    76

      3    Cindy    89

      4    Damon    90

      5    Ella    73

5、如果將union換成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

複製程式碼

    那麼這個呢?答案是一模一樣的~

6、據此我們可知,union和union all 區別在於在於對排序的處理。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都有效。

7、注意:

    1,Union可以對欄位名不同但資料型別相同的結果集進行合併;

    2,如果欄位名不同的結果集進行Union,那麼對此欄位的Order by子句將失效。

    這裡一起總結一下:

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

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

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

謝謝兩位博主的分享。