sql带条件的左连接
发布网友
发布时间:2022-04-08 06:06
我来回答
共3个回答
热心网友
时间:2022-04-08 07:35
sql带条件的左连接应加在语句的最后面,作为全局条件,他是指向整条语句的,先连接再计算条件,有个优先级的。
语句写法为:
Select [列1],[列2] from A left Join B on A.[列1]=B.[列5] where A.[列2]<>'张三';
热心网友
时间:2022-04-08 08:53
附表的条件放on里面,还有你这sql
where语句里多个and也能查处结果??
select csmc.xh, csmc.csmc, cs.cs
from csmc
left outer join cs
on (csmc.xh = cs.xh and cs.cpid='010100101001' )
where csmc.cplb = '0101'
热心网友
时间:2022-04-08 10:28
电阻的xh不一样啊,csmc.xh = cs.xh 电阻是3 cs里没有嘛,条件不成立所以不出喽!