SQL where条件和jion on条件的详解及区别
程序员文章站
2022-03-09 23:39:15
sql 语句中where条件和jion on条件的区别
与有很大的差别,请注意!
select tbl_schemadetail.materialno...
sql 语句中where条件和jion on条件的区别
与有很大的差别,请注意!
select tbl_schemadetail.materialno, tbl_stockmaterial.saleprice from tbl_stockmaterial right outer join tbl_schemadetail on tbl_stockmaterial.materialno = tbl_schemadetail.materialno and tbl_schemadetail.schemano = '7411' and tbl_stockmaterial.saleprice = 0
条件全部放到join的on中。
select tbl_schemadetail.materialno, tbl_stockmaterial.saleprice from tbl_stockmaterial right outer join tbl_schemadetail on tbl_stockmaterial.materialno = tbl_schemadetail.materialno where (tbl_schemadetail.schemano = '7411') and (tbl_stockmaterial.saleprice = 0)
连接和条件分开。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
推荐阅读
-
SQL中过滤条件放on和where中的区别详解
-
sql中的left join及on、where条件关键字的区别详解
-
MySQL查询条件中放置on和where的区别分析
-
MySQL left join操作中on和where放置条件的区别介绍
-
SQL where条件和jion on条件的详解及区别
-
mysql查询条件not in 和 in的区别及原因说明
-
SQL中where和having的区别详解
-
Oracle Database 12c SQL面试题:WHERE和HAVING条件的题解
-
SQL中过滤条件放on和where中的区别详解
-
sql中的left join及on、where条件关键字的区别详解