left join加上where條件的困惑

2022-07-22 18:00:20 字數 1869 閱讀 6137

eft join的困惑:一旦加上where條件,則顯示的結果等於inner join

將where 換成 and  

用where 是先連線然後再篩選   

用and 是先篩選再連線

資料庫在通過連線兩張或多張表來返回記錄時,都會生成一張中間的臨時表,然後再將這張臨時表返回給使用者。

在使用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的過程:

1、中間表

on條件: 

tab1.size = tab2.size

tab1.id    tab1.size    tab2.size     tab2.name

1               10                   10               aaa

2                20                  20                bbb

2                20                   20               ccc

3                30                  (null)           (null)

2、再對中間表過濾

where 條件:

tab2.name=』aaa』

tab1.id       tab1.size        tab2.size     tab2.name

1                  10                  10              aaa

第二條sql的過程:

1、中間表

on條件: 

tab1.size = tab2.size and tab2.name=』aaa』

(條件不為真也會返回左表中的記錄)

tab1.id      tab1.size         tab2.size       tab2.name

1               10                     10                   aaa

2               20                   (null)               (null)

3               30                    (null)                 (null)

其實以上結果的關鍵原因就是left join,right join,full join的特殊性,不管on上的條件是否為真都會返回left或right表中的記錄,full則具有left和right的特性的並集。 而inner jion沒這個特殊性,則條件放在on中和where中,返回的結果集是相同的。

left join加上where條件的困惑

left join的困惑 一旦加上where條件,則顯示的結果等於inner join 將where 換成 and 用where 是先連線然後再篩選 用and 是先篩選再連線 資料庫在通過連線兩張或多張表來返回記錄時,都會生成一張中間的臨時表,然後再將這張臨時表返回給使用者。在使用left jion...

left join加上where條件的困惑

left join的困惑 一旦加上where條件,則顯示的結果等於inner join 將where 換成 and 用where 是先連線然後再篩選 用and 是先篩選再連線 資料庫在通過連線兩張或多張表來返回記錄時,都會生成一張中間的臨時表,然後再將這張臨時表返回給使用者。在使用left jion...

left join 與 where 的關係

1 test ibm 表 中超1 天津 2 天津泰達 2 天津松江 2 天津瑞意隆 1 山東 6 山東魯能 6 山東國安 7 山東神話 1 北京 10 北京sb 2 test ibm 2 表 1 中超 1 天津 1 天津泰達 2 天津松江 2 天津瑞意隆 2 山東 3 山東魯能 3 山東國安 3 山...