码迷,mamicode.com
首页 > 数据库 > 详细

Oracle Delete inner的方式,级联删除子表的数据方式。

时间:2016-12-20 00:43:52      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:ble   exist   rac   epo   select   tab   class   条件   policy   

例子1:

delete from table1 a where exists (select 1 from table2 b where a.id=b.id)

例子2:

rebatepolicy表是主表,rebatepolicyitems是从表,从表有主表的主键,现在对于主表一些条件的数据的对应子表要求删除。

如下方式:

delete from rebatepolicyitems rs where exists
(
      select 1
      from rebatepolicy r  where rs.rebateguid=r.rebateguid
      and to_char(r.createdate,yyyyMMdd)=20161219 and r.creator=名字 
)

 

delete from table1 a where exists (select 1 from table2 b where a.id=b.id)

Oracle Delete inner的方式,级联删除子表的数据方式。

标签:ble   exist   rac   epo   select   tab   class   条件   policy   

原文地址:http://www.cnblogs.com/alsf/p/6200924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!