SQL中內鏈接和外鏈接

如表 ------------------------------------------------- table1 | table2 | ------------------------------------------------- id name |id score | 1 lee |1 90 | 2 zhang |2 100 | 4 wang |3 70 | ------------------------------------------------- 如下均在查詢分析器中執行 1、外鏈接 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 name id score ------------------------------ 1 lee 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 lee 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 lee 1 90 2 zhang 2 100 4 wang NULL NULL NULL NULL 3 70 ------------------------------ 註釋:返回左右鏈接的union(見上左、右鏈接) 2、內鏈接 1.概念:內聯接是用比較運算符比較要聯接列的值的聯接 2.內鏈接:join 或 inner join 3.sql語句 select * from table1 join table2 on table1.id=table2.id -------------結果------------- id name id score ------------------------------ 1 lee 1 90 2 zhang 2 100 ------------------------------ 註釋:只返回符合條件的table1和table2的列 4.等價(與下列執行效果相同) 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) 3、交叉鏈接(徹底) 1.概念:沒有 WHERE 子句的交叉聯接將產生聯接所涉及的表的笛卡爾積。第一個表的行數乘以第二個表的行數等於笛卡爾積結果集的大小。(table1和table2交叉鏈接產生3*3=9條記錄) 2.交叉鏈接:cross join (不帶條件where...) 3.sql語句 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 1 lee 3 70 2 zhang 3 70 4 wang 3 70 ------------------------------ 註釋:返回3*3=9條記錄,即笛卡爾積 4.等價(與下列執行效果相同) A:select * from table1,table2
相關文章
相關標籤/搜索