99re热视频这里只精品,久久久天堂国产精品女人,国产av一区二区三区,久久久精品成人免费看片,99久久精品免费看国产一区二区三区

30秒懂SQL中的join(2幅圖+30秒)

2018-09-06 18:03 更新

廢話不多說,直接上圖秒懂。

t1表的結(jié)構(gòu)與數(shù)據(jù)如下:

t1表
t2表的結(jié)構(gòu)與數(shù)據(jù)如下:
t2表

inner join

select * from t1 inner join t2 on t1.id = t2.id;

inner join
inner join會(huì)把公共部分的數(shù)據(jù)查詢出來
inner join查詢結(jié)果

left join

select * from t1 left join t2 on t1.id = t2.id;

left join
left join查詢出來的結(jié)果和前表記錄數(shù)一樣多,后表如果沒有對(duì)應(yīng)記錄,則列為空
left join查詢結(jié)果

right join

right join能轉(zhuǎn)化為left join,例如:

select * from t1 right join t2 on t1.id = t2.id;

能轉(zhuǎn)化為

select * from t2 left join t1 on t1.id = t2.id;

只是前表發(fā)生了變化而已。


大伙可結(jié)合自己的業(yè)務(wù)場(chǎng)景,選擇正確的join。


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)