SQL语句.删除两张表相同的数据

删除A表(字段:bm,cm),B表(字段:bm,cm)两表直接数据相同的所有数据,至少两种解决方案... 删除A表(字段:bm,cm),B表(字段:bm,cm)两表直接数据相同的所有数据,至少两种解决方案 展开
 我来答
百度网友19c5533fd
2010-06-27 · TA获得超过2389个赞
知道小有建树答主
回答量:465
采纳率:0%
帮助的人:619万
展开全部
方法1:
delete from A t1
where exists
( select 1 from B t2
where t1.bm = t2.bm
and t2.cm = t2.cm
) ;
commit;

delete from B t1
where exists
( select 1 from A t2
where t1.bm = t2.bm
and t2.cm = t2.cm
) ;
commit;

方法二:

delete from A t1
where to_char(t1.bm)||to_char(t1.cm)
in (select to_char(t2.bm)||to_char(t2.cm) from B t2);

commit;

delete from B t1
where to_char(t1.bm)||to_char(t1.cm)
in (select to_char(t2.bm)||to_char(t2.cm) from A t2);

commit;

to_char() 是转成字符串的函数,防止bm,cm是数字。
如果bm,cm都是字符,可以省略to_char().
以上oracle 适用。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式