今天遇到這樣一個語句: select * from interface a inner join hosts b on a.hostid=b.hostid inner join items c on c.hostid=a.hostid where a.hostid=10084 and c.key_ ...
今天遇到這樣一個語句:
select * from interface a inner join hosts b on a.hostid=b.hostid inner join items c on c.hostid=a.hostid where a.hostid=10084 and c.key_ like "%CPU%"\G;
都忘了怎麼回事了,下麵學習一下,轉至:https://www.cnblogs.com/Jessy/p/3525419.html
原文有些錯誤,給糾正過來。
sql(join on 和where的執行順序)left join :左連接,返回左表中所有的記錄以及右表中連接欄位相等的記錄。
right join :右連接,返回右表中所有的記錄以及左表中連接欄位相等的記錄。
inner join: 內連接,又叫等值連接,只返回兩個表中連接欄位相等的行。
full join:外連接,返回兩個表中的行:left join + right join。
cross join:結果是笛卡爾積,就是第一個表的行數乘以第二個表的行數。
關鍵字: on
資料庫在通過連接兩張或多張表來返回記錄時,都會生成一張中間的臨時表,然後再將這張臨時表返回給用戶。
在使用left jion時,on和where條件的區別如下:
1、 on條件是在生成臨時表時使用的條件,它不管on中的條件是否為真,都會返回左邊表中的記錄。
2、where條件是在臨時表生成好後,再對臨時表進行過濾的條件。這時已經沒有left join的含義(必須返回左邊表的記錄)了,條件不為真的就全部過濾掉。
假設有兩張表:
表1:tab1
id | size |
1 | 10 |
2 | 20 |
3 | 30 |
表2:tab2
size | name |
10 | AAA |
20 | BBB |
20 | CCC |
兩條SQL:
1、select * form tab1 left join tab2 on (tab1.size = tab2.size) where tab2.name=’AAA’
2、select * form tab1 left join tab2 on (tab1.size = tab2.size and tab2.name=’AAA’)
第一條SQL的過程:
|
第二條SQL的過程:
|
其實以上結果的關鍵原因就是left join,right join,full join的特殊性,不管on上的條件是否為真都會返回left或right表中的記錄,full則具有left和right的特性的並集。 而inner jion沒這個特殊性,則條件放在on中和where中,返回的結果集是相同的。
下麵解釋一下最開始的語句:
select * from interface a inner join hosts b on a.hostid=b.hostid inner join items c on c.hostid=a.hostid where a.hostid=10084 and c.key_ like "%CPU%"\G;
a--interface b---hosts c----items表
select * from interface inner join hosts on interface.hostid=hosts.hostid inner join items on items.hostid=interface.hostid where interface.hostid=10084 and items.key_ like "%CPU%"\G;
就是表的一個合併的意思。