mysql 集合 初步介紹MySQL中的集合操作

2021-10-25 14:16:37 字數 2422 閱讀 5238

啥是集合操作?

通常來說,將聯接操作看作是表之間的水平操作,因為該操作生成的虛擬表包含兩個表中的列。而我這裡總結的集合操作,一般將這些操作看作是垂直操作。mysql資料庫支援兩種集合操作:union distinct和union all。

與聯接操作一樣,集合操作也是對兩個輸入進行操作,並生成乙個虛擬表。在聯接操作中,一般把輸入表稱為左輸入和右輸入。集合操作的兩個輸入必須擁有相同的列數,若資料型別不同,mysql資料庫自動將進行隱式轉換。同時,結果列的名稱由左輸入決定。

前期準備

準備測試表table1和table2:

?12345678910111213create table table1(aidint not null auto_increment,titlevarchar(20),ta**archar(10),primary key(aid))engine=innodbdefault charset=utf8; create table table2(bidint not null auto_increment,titlevarchar(20),ta**archar(10),primary key(bid))engine=innodbdefault charset=utf8;

插入以下測試資料:

?1234567insert 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的語法如下:

?1234select column,...from table1union [all]select column,...from table2...

在多個select語句中,對應的列應該具有相同的字段屬性,且第乙個select語句中被使用的欄位名稱也被用於結果的欄位名稱。

現在我執行以下sql語句:

?1(select *from table1)union (select *from table2);

將會得到以下結果:

?123456789+-----+----------+-------+| aid | title  | tag  |+-----+----------+-------+|  1 | article1 | mysql ||  2 | article2 | php  ||  3 | article3 | cpp  ||  2 | article2 | cpp  ||  3 | article3 | c   |+-----+----------+-------+

我們發現,表table1和表table2中的重複資料項:

?1|  1 | article1 | mysql |

只出現了一次,這就是union的作用效果。

mysql資料庫目前對union distinct的實現方式如下:建立一張臨時表,也就是虛擬表;

對這張臨時表的列新增唯一索引;

將輸入的資料插入臨時表;

返回虛擬表。

因為新增了唯一索引,所以可以過濾掉集合中重複的資料項。這裡重複的意思是select所選的字段完全相同時,才會算作是重複的。

union all

union all的意思是不會排除掉重複的資料項,比如我執行以下的sql語句:?1(select *from table1)union all (select *from table2);

你將會得到以下結果:

?12345678910+-----+----------+-------+| 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。與聯接操作一樣,集合操作也是對兩個輸入進行操作,並生成乙個虛擬表...

mysq集合差操作 MySQL差集MINUS運算子

在本教程中,您將了解sql minus運算子以及如何使用join來模擬mysql minus運算子來求差集。sql minus操作員介紹 minus是包括,和minus在內的sql標準中的三個操作符之一。minus比較兩個查詢的結果,返回在第乙個查詢結果集中,但不是第二個查詢結果集中的行記錄,也就是...

mysq集合差操作 Python 基礎(集合)

st set hello world 建立乙個唯一字元的集合 st type st set st set 關注 點讚 點讚 點讚 在看 st 集合物件的一些方法 方法說明set.add elmnt 增加乙個新元素到集合裡,elmnt要新增的元素。set.updata set 把set中元素更新到原集...