多表查詢分為 內(nèi)、外連接
外連接分為左連接(left join 或left outer join)骤素、右連接(right join 或者 right outer join)匙睹、和完整外部連接 (full join 或者 full outer join)
左連接(left join 或 left outer join)的結(jié)果就是left join子句中的左表的所有行,而不僅僅是鏈接列所匹配的行济竹,如果左表中的某行在右表中沒有匹配痕檬,則在相關(guān)聯(lián)的結(jié)果行中右表的所有選擇列均為空值(NULL)
SQL語法:
select * from table1 left join table2 on table1.某字段名= table2.某字段名;
上面顯示的就是table1中的所有列和能匹配的列
右連接(right join 或 right outer join )在這里不做多說這左連接很象但是是相反的送浊,只說一下SQL語法:
select *from table1 right join table2 on table1. 某字段名= table2.某字段名
完全外部連接(full join 或 full outer join)
顯示左右表中的所有行谆棺,當(dāng)某一個表中沒有匹配的行時,則另一個表的選擇列表列包含空值(NULL)如果有則顯示全部數(shù)據(jù)
SQL語法:
select *from table1 full join table2 on table1.某字段名= table2.某字段名
內(nèi)連接:
概念:內(nèi)連接就是用比較運(yùn)算符比較要用連接列的值的連接
內(nèi)連接(join 或者inner join )
SQL語法:
select *fron table1 join table2 on table1.某字段名 = table2.某字段名
返回符合匹配條件的兩表列
等價于:
select A* ,B* from table1 A ,table2 B where A.某字段名=B.某字段名
select *form table1 cross join table2 where table1.某字段名= table2.某字段名(注: Cross join 后面不能跟on 只能用where)
交叉連接(完全)
概念:沒有用where子句的交叉連接將產(chǎn)生連接所涉及的笛卡爾積第一個表的行數(shù)乘以第二個表的行數(shù)等于笛卡爾積和結(jié)果集的大小
交叉連接: Cross join(不帶條件where罕袋,如果帶返回或顯示的是匹配的行數(shù))
SQL語法:
select *from table1 cross join table2
如果有條件(where)
select * from table1 cross join table2 where table1. 某字段名= table2.某字段名
等價于
select *from table1,table2 (不帶where)