91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

union 和 union all的區別

發布時間:2020-08-16 05:58:45 來源:網絡 閱讀:2118 作者:運維少年 欄目:關系型數據庫

union 和 union all的區別

相同點和不同點

相同點:
union和union all 都是對于多個查詢結果的并集進行操作
不同點:
1.union 不會輸出兩個結果并集的重復行
2.union all 會輸出兩個結果并集的重復行

實驗表

字段解釋:
xh:學號
xh:姓名
nl:年齡

create table student(xh number,xm varchar2(4),nl int);
insert into student values(1,'A',21);
insert into student values(2,'B',21);
insert into student values(3,'A',21);
insert into student values(4,'A',21);
insert into student values(5,'A',21);
insert into student values(6,'C',21);
insert into student values(7,'B',21);

查看表

SQL> select * from student;

    XH XM           NL
---------- ------------ ----------
     1 A            21
     2 B            21
     3 A            21
     4 A            21
     5 A            21
     6 C            21
     7 B            21

7 rows selected.

SQL> 

例子

union

SQL> select * from student
  2  union
  3  select * from student where xm='A';

    XH XM           NL
---------- ------------ ----------
     1 A            21
     2 B            21
     3 A            21
     4 A            21
     5 A            21
     6 C            21
     7 B            21

7 rows selected.

SQL> 

union all

SQL> select * from student
  2  union all
  3  select * from student where xm='A';

    XH XM           NL
---------- ------------ ----------
     1 A            21
     2 B            21
     3 A            21
     4 A            21
     5 A            21
     6 C            21
     7 B            21
     1 A            21
     3 A            21
     4 A            21
     5 A            21

11 rows selected.

SQL> 
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

花莲县| 来凤县| 定西市| 芷江| 从江县| 万宁市| 天长市| 永昌县| 东城区| 驻马店市| 清苑县| 垦利县| 阿巴嘎旗| 平江县| 龙陵县| 沐川县| 夹江县| 威信县| 金塔县| 万源市| 北碚区| 长泰县| 蒙山县| 利津县| 泽普县| 雅安市| 天长市| 隆德县| 来凤县| 山丹县| 泰和县| 澎湖县| 南昌市| 贵定县| 建平县| 远安县| 汉源县| 区。| 昌平区| 奉新县| 乐昌市|