Oracle中找出两表中不一样的数据

ORACLE中有两个表格A.B里面有很多数据是一样的(只要ID是一样的,name是一样的,其他不一样不用考虑),我想要找出里面id,和name不一样的数据,并删除。... ORACLE 中有两个表格A.B里面有很多数据是一样的(只要ID是一样的,name是一样的,其他不一样不用考虑),我想要找出里面id,和name不一样的数据,并删除。 展开
 我来答
宋玉杰宋玉杰宋
2014-04-01
知道答主
回答量:23
采纳率:100%
帮助的人:5.6万
展开全部
如果是A,B 表格都有需要删除的可以分两次操作,A.ID NOT IN B.ID,可以找出A中不同数据,然后DELETE,可以用同样的方法删除B表格中数据
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
小心情的月寒塘
推荐于2017-05-21 · TA获得超过235个赞
知道答主
回答量:128
采纳率:100%
帮助的人:26.6万
展开全部
-------------以下是id一样但name不一样的理解-------------------------
看看数据是否想要的
select * from 表格A a where exists (select 1 from 表格B b where a.ID=B.ID and a.name<>b.name)

是的话
delete from 表格A a where exists (select 1 from 表格B b where a.ID=B.ID and a.name<>b.name)
delete from 表格B a where exists (select 1 from 表格A b where a.ID=B.ID and a.name<>b.name)

-------------以下是id、name中有一个不一样的理解-------------------------
delete from 表格A a where not exists (select 1 from 表格B b where a.ID=B.ID and a.name=b.name)
delete from 表格B a where not exists (select 1 from 表格A b where a.ID=B.ID and a.name=b.name)
追问
首先感谢您的热心回答!
我的意思是:
A表中有和B表id或者name相等的都不要显示,显示两表中id 、name不一样的数据!
请问一下“SELECT 1 ”是代表什么意思?
追答
delete from 表格A a where not exists (select 1 from 表格B b where a.ID=B.ID or a.name=b.name)
delete from 表格B a where not exists (select 1 from 表格A b where a.ID=B.ID or a.name=b.name)

select 1 返回逻辑值1
A相等或B相等 等价于 非(A和B都不相等)

delete from 表格A a where exists (select 1 from 表格B b where a.IDB.ID and a.nameb.name)
delete from 表格B a where exists (select 1 from 表格A b where a.IDB.ID and a.nameb.name)
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式