博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用连接来代替in和not in(使用外连接技巧)
阅读量:6488 次
发布时间:2019-06-24

本文共 1047 字,大约阅读时间需要 3 分钟。

 

比如:表A里面的一个字段叫做MOBILE 里面存的记录如下
1
2
3
4
5
6
7
8
1
表B里面的一个字段也叫做MOBILE里面存的记录如下
1
2
3
4
1
9
10
 
(1)我们要查询一下A和B里面都有的,以前我使用的是
select A.mobile from  A where A.mobile in (select B.mobile from B)
出来结果为:
1
1
2
3
4
没关系,去除重复就得到结果1,2,3,4了
现在我们使用另外一种SQL呢:
select A.mobile from A,B where A.mobile=B.mobile
结果为
1
1
2
3
4
1
1
同样滤重得到结果1,2,3,4
(2)第二个实验我们要取一下在A中有的,而在B中没有的,以前我都是使用not in 不要太熟练了,呵呵!不过从来也不考虑个效率。
select  A.mobile from  A where A.mobile not in (select B.mobile from B)
得出结果
5
6
7
8
然后我们再使用连接在处理
select A.mobile from A,B where A.mobile=B.mobile(+) and B.mobile is null
这条语句还可以表示为:
select A.mobile from A left outer  join B on (A.mobile=B.mobile) where B.mobile is null
结果为:
6
5
7
8
(3) 第三个实现我们要取B中有的,而A中没有的,直接用连接了
select B.mobile from B left outer join A on (B.mobile=A.mobile) where A.mobile is null
等价于
select B.mobile from A,B where A.mobile(+)=B.mobile and A.mobile is null 
等价于
select B.mobile from A right outer join B on (A.mobile=b.mobile) where A.mobile is null
 
结果为:
10
9
 
这样的话大家应该对左外连接,右外连接有个理解了吧!!!使用连接肯定是要比not in 的效率高多了,这可不是我说的DBA说的!呵呵!ORACLE10G测试通过!

转载地址:http://woauo.baihongyu.com/

你可能感兴趣的文章
selenium-webdriver(python) (十四) -- webdriver原理
查看>>
《ANSYS FLUENT 16.0超级学习手册》——导读
查看>>
Zookeeper的功能以及工作原理 (转自:http://www.cnblogs.com/felixzh/p/5869212.html)
查看>>
服务器管理助手Linux版(宝塔)新版安装,支持一键SSL配置
查看>>
开发原生的 Google 眼镜应用 【已翻译100%】(1/2)
查看>>
《树莓派Python编程入门与实战》——1.3 哪些树莓派外设是必须的
查看>>
《编译与反编译技术实战 》一3.2 词法分析器的手工实现
查看>>
《计算机存储与外设》----1.5 虚拟存储器和存储器管理
查看>>
《 Python树莓派编程》——3.4 利用Python进行编程
查看>>
从损坏的 Linux EFI 安装中恢复
查看>>
Git Rebase教程: 用Git Rebase让时光倒流
查看>>
柏林纪行(上):整体感受
查看>>
《Python数据科学指南》——1.14 返回一个函数
查看>>
《Python数据分析》一1.7 学习手册页
查看>>
Centos7 下建立 Docker 桥接网络
查看>>
《Hack与HHVM权威指南》——1.6 类型推理
查看>>
《CCNA学习指南:数据中心(640-911)》——导读
查看>>
《精通 ASP.NET MVC 5》----1.3 ASP.NET MVC的关键优点
查看>>
《JavaScript框架设计》——1.5 主流框架引入的机制——domReady
查看>>
《正则表达式经典实例(第2版)》——2.3 匹配多个字符之一
查看>>