小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

DELETE CASCADE級(jí)聯(lián)刪除

 moonboat 2009-04-26

DELETE CASCADE級(jí)聯(lián)刪除

1.如果linecenter(主表)中的一個(gè)lid被刪除了,那么引用該lid的從表中的所有記錄也被刪除。

通常稱為級(jí)聯(lián)刪除

例如:

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

表已創(chuàng)建。

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

表已創(chuàng)建。

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);

表已創(chuàng)建。

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

已創(chuàng)建 1 行。

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

已創(chuàng)建 1 行。

SQL> delete test;
delete test
*
ERROR 位于第 1 行:
ORA-02292: 違反完整約束條件 (YANGTK.FK_TEST1) - 已找到子記錄日志


SQL> delete test1;

已刪除 1 行。

SQL> delete test;

已刪除 1 行。

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

已創(chuàng)建 1 行。

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

已創(chuàng)建 1 行。

SQL> delete test;

已刪除 1 行。

SQL> select * from test;

未選定行

SQL> select * from test2;

未選定行

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請遵守用戶 評(píng)論公約

    類似文章 更多