select * from dual where
select * from dual where
select * from dual where 'wd06000174' not in (select zc.wlccid from c_zzcc zc)
不如这样 (select 1 from c_zzcc zc where
或 这样 select * from dual where
开始了:
select count(*) from j_yhda yhda where yhda.id in
( select x.yhid
)这个sql看着没错.但是是错的
正确应该这样写
select count(*) from j_yhda yhda where yhda.id in
( select x.yhid
)
原因是这样:
比如
not in 后面的表达式中的结果里不能有null
如上面的sql
这个问题没注意到的话会有这样的问题.有个值分明是不在某个表达式的结果中的(这个表达式的结果中有null)
所以呢用not in时候最好限制一下not null