中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

从化市| 九龙城区| 攀枝花市| 泾川县| 蒲江县| 长兴县| 邢台县| 壤塘县| 页游| 老河口市| 宽甸| 凌海市| 思茅市| 霸州市| 安乡县| 垫江县| 吉首市| 汕头市| 洪泽县| 林口县| 宁河县| 都兰县| 合江县| 木兰县| 贡山| 云林县| 崇左市| 浦江县| 喀什市| 常宁市| 临夏市| 梁山县| 黄龙县| 桐庐县| 邵东县| 九龙城区| 古丈县| 大邑县| 静宁县| 察哈| 徐州市|