not in与in 做大数据的时候可以用来替换下

not in与in 做大数据的时候可以用来替换下,第1张

概述not in 与in 做大数据的时候可以用来替换

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。

内存溢出小编现在分享给大家,也给大家做个参考。

create table #table1 (name varchar(20),dis varchar(100))create table #table2 (name varchar(20),dis varchar(100))insert into #table1 select 'a','b' union select 'b','c' union select 'd','e' union select 'f','g'insert into #table2 select 'a1','b1' union select 'b1','c1' union select 'd1','e1' union select 'f1','g1'select * from #table2 where dis not in(select name from #table1)select * from #table2  as aleft join #table1 as b on a.dis=b.namewhere b.name is null/*select * from 表A where 列 not in(select 列 from 表B)替换方法 表A 与 表B 进行join关联  让B 列为null时 则表A有数据 表B没有。之前做数据转储的时候想到的,数据量很大的时候可以这样 效率很高select * from 表A  as aleft join 表B as b on a.列=b.列where b.列 is null*/

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的not in 与in 做大数据的时候可以用来替换下全部内容,希望文章能够帮你解决not in 与in 做大数据的时候可以用来替换下所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/sjk/1164879.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-06-01
下一篇2022-06-01

发表评论

登录后才能评论

评论列表(0条)

    保存