SQL Server 替换 not in 的用法[通俗易懂]

SQL Server 替换 not in 的用法[通俗易懂]select * from T_A a (nolock) where a.xh not in (select xh from T_B) 方法1:效果甚微 select * from T_A a (no

SQL Server 替换 not in 的用法

select * from T_A a (nolock) where a.xh not in (select xh from T_B)

方法1:效果甚微

select * from T_A a (nolock) where not exists (select xh from T_B where xh=a.xh)

方法2:效果比想象的要好。

select * from T_A a (nolock) left join T_B b on b.xh=a.xh where b.xh is null

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/7281.html

(0)
上一篇 2023-03-23
下一篇 2023-03-23

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注