啥是集合操作?
通常來說,將聯接操作看作是表之間的水平操作,因為該操作生成的虛擬表包含兩個表中的列。而我這裡總結的集合操作,一般將這些操作看作是垂直操作。mysql資料庫支援兩種集合操作:union distinct和union all。
與聯接操作一樣,集合操作也是對兩個輸入進行操作,並生成乙個虛擬表。在聯接操作中,一般把輸入表稱為左輸入和右輸入。集合操作的兩個輸入必須擁有相同的列數,若資料型別不同,mysql資料庫自動將進行隱式轉換。同時,結果列的名稱由左輸入決定。
前期準備
準備測試表table1和table2:
create table table1
(aid int not null auto_increment,
title varchar(20),
tag varchar(10),
primary key(aid))
engine=innodb default charset=utf8;
create table table2
(bid int not null auto_increment,
title varchar(20),
tag varchar(10),
primary key(bid))
engine=innodb default charset=utf8;
插入以下測試資料:
insert into table1(aid, title, tag) values(1, 'article1', 'mysql');
insert into table1(aid, title, tag) values(2, 'article2', 'php');
insert into table1(aid, title, tag) values(3, 'article3', 'cpp');
insert into table2(bid, title, tag) values(1, 'article1', 'mysql');
insert into table2(bid, title, tag) values(2, 'article2', 'cpp');
insert into table2(bid, title, tag) values(3, 'article3', 'c');
union distinct
union distinct組合兩個輸入,並應用distinct過濾重複項,一般可以直接省略distinct關鍵字,直接使用union。
union的語法如下:
select column,... from table1
union [all]
select column,... from table2
在多個select語句中,對應的列應該具有相同的字段屬性,且第乙個select語句中被使用的欄位名稱也被用於結果的欄位名稱。
現在我執行以下sql語句:
(select * from table1) union (select * from table2);
將會得到以下結果:
| aid | title | tag |
| 1 | article1 | mysql |
| 2 | article2 | php |
| 3 | article3 | cpp |
| 2 | article2 | cpp |
| 3 | article3 | c |
我們發現,表table1和表table2中的重複資料項:
| 1 | article1 | mysql |
只出現了一次,這就是union的作用效果。
mysql資料庫目前對union distinct的實現方式如下:
建立一張臨時表,也就是虛擬表;
對這張臨時表的列新增唯一索引;
將輸入的資料插入臨時表;
返回虛擬表。
因為新增了唯一索引,所以可以過濾掉集合中重複的資料項。這裡重複的意思是select所選的字段完全相同時,才會算作是重複的。
union all
union all的意思是不會排除掉重複的資料項,比如我執行以下的sql語句:
(select * from table1) union all (select * from table2);
你將會得到以下結果:
| aid | title | tag |
| 1 | article1 | mysql |
| 2 | article2 | php |
| 3 | article3 | cpp |
| 1 | article1 | mysql |
| 2 | article2 | cpp |
| 3 | article3 | c |
發現重複的資料並不會被篩選掉。
在使用union distinct的時候,由於向臨時表中新增了唯一索引,插入的速度顯然會因此而受到影響。如果確認進行union操作的兩個集合中沒有重複的選項,最有效的辦法應該是使用union all。
mysql 集合 初步介紹MySQL中的集合操作
啥是集合操作?通常來說,將聯接操作看作是表之間的水平操作,因為該操作生成的虛擬表包含兩個表中的列。而我這裡總結的集合操作,一般將這些操作看作是垂直操作。mysql資料庫支援兩種集合操作 union distinct和union all。與聯接操作一樣,集合操作也是對兩個輸入進行操作,並生成乙個虛擬表...
mysql集合屬性 MySql集合查詢
select語句的查詢結果是元組的集合,所以多個select語句的結果可進行集合操作。集合操作主要包括並操作union 交操作intersect 差操作except。注意,參加集合操作的各查詢結果的列數必須相同 對應的資料型別也必須相同。本示例中的資料表有student,sc select語句的查詢...
Python中的集合介紹
1.集合的定義 集合的元素是不可重複的 s print s print type s s1 print s1 print type s1 集合就算只有乙個元素,也是集合,不需要像列表一樣,加個逗號 那麼如何定義乙個空集合 s2 print type s2 s3 set print s3 print ...