1.on是在生成临时表时()起作用,而且不管on中的条件是否为真,都会返回(left join)左边所有的数据,如果不匹配也是返回空。

2.where 是在生成了临时表后,再对表进行过滤

个人理解:先on后where,先通过on把所有数据生成临时表,where对临时表过滤。

有点深奥吗?来举个例子:

假设有两张表:

表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语句:select * form tab1 left join tab2 on (tab1.size = tab2.size) where tab2.name=’AAA’

第一条SQL的过程:

1、中间表
on条件:
tab1.size = tab2.size
tab1.idtab1.sizetab2.sizetab2.name
1
10
10
AAA
2
20
20
BBB
2
20
20
CCC
3
30
(null)
(null)
|
|

2、再对中间表过滤
where 条件:
tab2.name=’AAA’

tab1.idtab1.sizetab2.sizetab2.name
1
10
10
AAA
  

第二条语句呢?select * form tab1 left join tab2 on (tab1.size = tab2.size and tab2.name=’AAA’)

第二条SQL的过程:

1、中间表
on条件:
tab1.size = tab2.size and tab2.name=’AAA’
(条件不为真也会返回左表中的记录)
tab1.idtab1.sizetab2.sizetab2.name
1
10
10
AAA
2
20
(null)
(null)
3
30
(null)
(null)

更多信息,参考这里

05-11 17:03