您的位置:首页 > 产品设计 > UI/UE

difference between "on" and "where" when using left/right join query

2013-04-23 18:38 337 查看
  I used to put the where-condiction in the "on" substatement in a join query,wishing that can help reducing the join count and improving the performence.But totally i was wrong.It seems the on-condiction is not like the where-condiction in a left/right join query.

  For example, there are two tables :
  order([id],[order_code]), order_detail([id],[order_id],[product_name]), and they have some rows of data: 

order:
idorder_code
1order001
2order002
3order003
order_detail:
idorder_idproduct_name
11p001
21p002
32p003
43p001
53p003
  Now i want to know the order_codes of orders which buying the product "p001",what is the query statement probably like?

  In the pass,I may write this sql like this :

select * from [order_detail] left join [order] on [order].id=[order_detail].orderid and order_detail.product_name='p001'


rather than this:

select * from [order_detail] left join [order] on [order].id=[order_detail].orderid where order_detail.product_name='p001'


  How come i prefer the first one?,but not the second one? I thought the first one is faster because it would only join rows which product_name is 'p001' in table [order_detail]. I guess
the sql server would check all of "on-condiction" and if the condiction is false, sql server would not execute the join operation,that means join operation will only occur twice(because there are only two rows which product_name is "p001" in table [order_detail]). But the second one sucks since it will join all rows of table [order_detail] and then find out which row's product_name is 'p001' only when all join operations get done!

  But the first one is a bad query,it's not giving what i want. In fact it returns result like this:

idorder_idproduct_nameidorder_code
11p0011order001
21p002nullnull
32p003nullnull
43p0013order003
53p003nullnull
  But what result i want is like this:

idorder_idproduct_nameidorder_code
11p0011order001
43p0013order003
  And only the second sql is correct.
  So what is wrong? What's the matter of the first one?
  In this case, the "on-condiction" is not like what i think about.In a left/right join query, sql server will select all rows of the basic table no matter the on-condiction is true or false, in other words, the "on-condiction" is not a condiction to selecting rows of a basic table, in fact ,it's just a condiction to joinning rows.If the on-condiction is true, the current row of the basic table will join the row of the secondary table, if not,it won't,remainning the null in the field. But no matter it's true or not, all rows of the basic table are there,no more no less.

  But the second,surely, will get the right result: only two row with the product_name "p001".It will join all rows,and when the join get done,it then find out rows i want.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: