Oracle中找出两表中不一样的数据
ORACLE中有两个表格A.B里面有很多数据是一样的(只要ID是一样的,name是一样的,其他不一样不用考虑),我想要找出里面id,和name不一样的数据,并删除。...
ORACLE 中有两个表格A.B里面有很多数据是一样的(只要ID是一样的,name是一样的,其他不一样不用考虑),我想要找出里面id,和name不一样的数据,并删除。
展开
2个回答
展开全部
如果是A,B 表格都有需要删除的可以分两次操作,A.ID NOT IN B.ID,可以找出A中不同数据,然后DELETE,可以用同样的方法删除B表格中数据
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
-------------以下是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)
看看数据是否想要的
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)
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询