我建了两张表:如下:
create table test1(
 c1 number primary key
);
create table test2(
 x1 references test1(c1) on delete cascade,
 x2 primary key
)
然后我想级联删除两张表(在删除test1的时候就给test2也删掉),我是这样做的!
drop table test1 cascade constraints;
怎么在执行了这条命令以后,test1是删掉了,怎么test2却还在呢,怎么没有级联删除掉啊!
请高手指点啊!