病毒安全知识,电脑网络技术,手工杀毒方法,答疑解决笔记

导航

« office2007兼容包打不开加密docx$extend是什么文件夹 »

oracle查询不包含在子表中的数据

  Oracle数据库,查询某表中不包含在子表中的数据,子表中数据按特定条件来源于该父表,SQL命令如

select * from a_table a where a.id not in (select id from b_table)

a_table父表,b_table子表,a和b表都有id列,b的id来源于a,要求a表中id不包含在b表id中的数据,但用not in效率太低,所以可以改为

select * from a_table a,b_table b where a.id=b.id(+) and b.id is null

我喜欢这个,快!

或者是

select * from a_table a where not exists(select 1 from b_table b where b.id=a.id)

这个也行,比起in来使用了索引,效率要高,但是可能会出现重复记录,所以可以加上select distinct仅列出不同的值,即

select distinct * from a_table a where not exists(select 1 from b_table b where b.id=a.id) 

有关in和exists的区别,“EXISTS,Oracle会首先检查主查询,然后运行子查询直到它找到第一个匹配项。IN,在执行子查询之前,系统先将主查询挂起,待子查询执行完毕,存放在临时表中以后再执行主查询。”

  还有一种高效率的写法:

select * from a_table a where a.id in (select id from a_table minus select id from b_table)

虽然也是用in,但是使用了minus求两表差集,速度上比用exists还要快(以上有关速度的描述仅针对我的数据库测试而得)。


>> 除非说明均为原创,如转载请注明来源于http://www.stormcn.cn/post/1302.html

  • 1楼.17tpl
  • 怎么说这么眼熟的站 滑倒底部才知道果然zblog LZ 是个高手哇 我还在学习仿站
  • 2012-10-13 21:00:30  [引用]

发表评论(无须注册,所有评论在审核通过后显示):

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

  • 微信订阅号
    微信订阅

最新发表

最新评论及回复

本站出现的所有广告均不代表本人及本站观点立场 | 关于我 | 网站地图 | 联系邮箱 | 返回顶部
Copyright 2008-2020 www.stormcn.cn. All Rights Reserved. Powered By Z-Blog.

闽公网安备 35010202000133号