delete cascade 级联删除

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

                 

1.如果linecenter(主表)中的一个lid被删除了,那么引用该lid的从表中的所有记录也被删除。

通常称为级联删除

例如:

SQL> create table test (id number(7) not null, name varchar2(20),
  2  constraint pk_test primary key (id));

表已创建。

SQL> create table test1 (id number(7) not null, comments varchar(400),
  2  constraint fk_test1 foreign key (id) references test (id));

表已创建。

SQL> create table test2 (id number(7) not null, commects varchar(400),
  2  constraint fk_test2 foreign key (id) references test (id) on delete cascade);

表已创建。

SQL> insert into test values (1, 'abc');

已创建 1 行。

SQL> insert into test1 values (1, 'aaaaa');

已创建 1 行。

SQL> delete test;
delete test
*
ERROR 位于第 1 行:
ORA-02292: 违反完整约束条件 (YANGTK.FK_TEST1) - 已找到子记录日志


SQL> delete test1;

已删除 1 行。

SQL> delete test;

已删除 1 行。

           

给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow

这里写图片描述

猜你喜欢

转载自blog.csdn.net/tyuuhgf/article/details/84100503