not in 子查询中出现null,查询无数据

select * from A where 列名 not in (select 列名 from B)
如果  子查询 B的列名有NULL值,则查询无效。 修改:
select * from A where 列名 not in (select isnull(列名,'') from B) 

not in 子查询中出现null,查询无数据最先出现在Python成神之路

版权声明:
作者:ht
链接:https://www.techfm.club/p/4621.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>