在Java中如何做一条删除语句同时删除两个表里的相同记录
3个回答
展开全部
insert a.id into table select a.id from a,b where a.id=b.id
delete from a where a.id in(select id from table)
delete from b where b.id in(select id from table)
-------------------------
第一句得到两个表里的相同记录并插入临时表
第二句把A表里的记录删除,条件是table表里的ID
第三句把B表里的记录删除,条件是table表里的ID
delete from a where a.id in(select id from table)
delete from b where b.id in(select id from table)
-------------------------
第一句得到两个表里的相同记录并插入临时表
第二句把A表里的记录删除,条件是table表里的ID
第三句把B表里的记录删除,条件是table表里的ID
更多追问追答
追问
写在一条语句中不行吗
追答
不能,
展开全部
sql="delete from a where id='a' ; delete form b where id='a'";
也可以用触发器。
也可以用触发器。
更多追问追答
追问
用Java编程的有吗
追答
sql="delete from a where id='a' ; delete form b where id='a'";
这样写一条sql好像可以吧 你试试看
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-12-20
展开全部
.....................
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询