MySql資料庫連線種類

2021-10-04 22:53:32 字數 3172 閱讀 7891

查詢分析器中執行:

建表table1,table2:

create table table1(id int,name varchar(10))

create table table2(id int,score int)

insert into table1 select 1,『lli』

insert into table1 select 2,『zhang』

insert into table1 select 4,『wang』

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 li |1 90|

2 zhang| 2 100|

4 wang| 3 70|

table1

table2

id name

id score

1 li

1 90

2 zhang

2 100

4 wang

3 70

以下均在查詢分析器中執行

一、外連線

1.概念:包括左向外聯接、右向外聯接或完整外部聯接

2.左連線:left join 或 left outer join

(1)左向外聯接的結果集包括 left outer 子句中指定的左表的所有行,而不僅僅是聯接列所匹配的行。如果左表的某行在右表中沒有匹配行,則在相關聯的結果集行中右表的所有選擇列表列均為空值(null)。

(2)sql 語句

select * from table1 left join table2 on table1.id=table2.id
-------------結果-------------

id nameid id score

1 li 1 90

2 zhang 2 100

4 wang null null

注釋:包含table1的所有子句,根據指定條件返回table2相應的字段,不符合的以null顯示

3.右連線:right join 或 right outer join

(1)右向外聯接是左向外聯接的反向聯接。將返回右表的所有行。如果右表的某行在左表中沒有匹配行,則將為左表返回空值。

(2)sql 語句

select * from table1 right join table2 on table1.id=table2.id
-------------結果-------------

id name id score

1 li 1 90

2 zhang 2 100

null null 3 70

注釋:包含table2的所有子句,根據指定條件返回table1相應的字段,不符合的以null顯示

4.完整外部聯接:full join 或 full outer join

(1)完整外部聯接返回左表和右表中的所有行。當某行在另乙個表中沒有匹配行時,則另乙個表的選擇列表列包含空值。如果表之間有匹配行,則整個結果集行包含基表的資料值。

(2)sql 語句

select * from table1 full join table2 on table1.id=table2.id
-------------結果-------------

id name id score

1 li 1 90

2 zhang 2 100

4 wang null null

nullnull 3 70

注釋:返回左右連線的和(見上左、右連線)

二、內連線

1.概念:內聯接是用比較運算子比較要聯接列的值的聯接

2.內連線:join 或 inner join

3.sql 語句

select * from table1 join table2 on table1.id=table2.id
-------------結果-------------

id name id score

1 li 1 90

2 zhang 2 100

注釋:只返回符合條件的table1和table2的列

4.等價(與下列執行效果相同)

select a.*,b.* from table1 a,table2 b where a.id=b.id

select * from table1 cross join table2 where table1.id=table2.id (注:cross join後加條件只能用where,不能用on)

三、交叉連線(完全)1.概念:沒有 where 子句的交叉聯接將產生聯接所涉及的表的笛卡爾積。第乙個表的行數乘以第二個表的行數等於笛卡爾積結果集的大小。(table1和table2交叉連線產生3*3=9條記錄)

2.交叉連線:cross join (不帶條件where…)

3.sql語句

select * from table1 cross join table2
-------------結果-------------

id name id score

1 li 1 90

2 zhang 1 90

4 wang 1 90

1 li 2 100

2 zhang 2 100

4 wang 2 100

1 li 3 70

2 zhang 3 70

4 wang 3 70

注釋:返回3*3=9條記錄,即笛卡爾積

4.等價(與下列執行效果相同)

oracle連線種類整理

oracle多表連線分為三大類 next loop sort merge hash join。每一類又分為三小類,有傳統連線,semi join,anti join。後兩種叫做半連線 nest loop方式 有兩個表,驅動表driving table,被驅動表driven table。驅動表做一次遍...

資料庫約束和連線的種類

建立資料庫 create database 學生練習on name srcsharedb,filename e stuexcise.mdf size 10,maxsize unlimited,filegrowth 10 日誌檔案 log on name srcsharelg,filename e s...

資料庫種類

資料庫種類大體分為 關係型資料庫和非關係型資料庫 關係型資料庫模型是把複雜的 歸結為簡單的二元關係 即二維 形式 在關係型資料庫中,對資料的操作幾乎全部建立在乙個或多個關係 上,通過對這些關聯的 分類 合併 連線或選取等運算來實現資料庫的管理。典型產品 m ysql oracle db2 sqlse...