将导致循环或多重级联路径create table tab1(ID int primary key)
create table tab2(ID1 int references tab1(id) on delete cascade,ID2 int references tab1(id) ON DELETE NO ACTION)