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

Posted 美好的明天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle Delete inner的方式,级联删除子表的数据方式。相关的知识,希望对你有一定的参考价值。

例子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的方式,级联删除子表的数据方式。的主要内容,如果未能解决你的问题,请参考以下文章

多表级联删除表数据特别慢

3.3 DML 删除

oracle中如何用delect删除两个关联的表的一条信息,要是用delete不行那应该用啥?

oracle语句的级联问题,这个语句e.mgr=m.empno(+) 谁可以给我讲讲这个是啥意思还带有(+)详细解答哦!

Laravel 4 级联软删除

为啥 delete-orphan 需要“全部级联”才能在 JPA/Hibernate 中运行?