關於sql語句中的連結(join)關鍵字,是較為常用而又不太容易理解的關鍵字,下面這個例子給了一個簡單的解釋--建表table1,table2:
create table table1(id int,name varchar(10))
create table table2(id int,score int)
insert into table1 select 1,'lee'
insert into table1 select 2,'zhang'
insert into table1 select 47 tablewang' insert into table2 select 1,90
insert into table2 select 2,100
insert into table2 select 3,70
如表
------------------------- ------------------------
table1 | table2 |
-------------------- -----------------------------
id name |id score |
1 lee |1 90 |
2 zhang |2 100 |
4 wang |3 70 |
------------------------------------------ -------
1.概念:包括左向外聯接、右向外聯接或完整外部聯接
(1)左向外聯接的結果集包括LEFT OUTER 子句中指定的左表的所有行,而不僅僅是聯結列所匹配的行。如果左表的某行在右表中沒有符合行,則在相關聯的結果集行中右表的所有選擇清單列均為空值(null)。
(2)sql語句
select * from table1 left join table2 on table1.id=table2.id
-------------結果-------------
id name id score
------------------------------
1 lee 1 90
2 zhang 2 100
4 wang NULL NULL
------------------------------
註解:包含table1的所有子句,根據指定條件傳回table2對應的字段,不符合的以null顯示
(1)右向外聯結是左向外聯接的反向聯接。將返回右表的所有行。如果右表的某行在左表中沒有符合行,則將為左表傳回空值。
(2)sql語句
select * from table1 right join table2 on table1.id=table2.id
-------------結果-------------
id name id score
------------------------------
1 lee 1 90
2 zhang 2 100
NULL NULL 3 70
------------------------------
註解:包含table2的所有子句,根據指定條件傳回table1對應的字段,不符合的以null顯示
(1)完整外部聯結返回左表和右表中的所有行。當某行在另一個表中沒有符合行時,則另一個表的選擇清單列包含空值。如果表之間有匹配行,則整個結果集行包含基底表的資料值。
(2)sql語句
select * from table1 full join table2 on table1.id=table2.id
-------------結果-------------
id name id score
------------------------------
1 lee 1 90
2 zhang 2 100
4 wang NULL NULL
NULL NULL 3 70
------------------------------
註:傳回左右連接的和(見上左、右連接)
1.概念:內聯接是用比較運算子比較要聯接列的值的聯結
select * from from from from table1 join table2 on table1.id=table2.id
-------------結果-------------
id name id score
----- -------------------------
1 lee 1 90
2 zhang 2 100
-------------- ----------------
註解:只傳回符合條件的table1和table2的欄位
A:select a.*, b.* from table1 a,table2 b where a.id=b.id
B:select * from table1 cross join table2 where table1.id=table2.id (註:cross join後加條件只能用where,不能用on)
select * from table1 cross join table2
-- -----------結果-------------
id name id score
------------------- -----------
1 lee 1 90
2 zhang 1 90
4 wang 1 90
1 lee 2 100
2 zhang 2 100
4 wang 2 100
2 zhang 2 100
4 wang 2 100
2 zhang 2 100
4 wang 2 100
2 zhang 2 100
4 wang 2 100
4 wang 3 70
------------------------------
4.等價(與下列執行效果相同)