--两个外键都进行级联更新和删除不行,只能有一个外键可以
alter table t2 ADD constraint [FK_t2_t1] foreign key(id1) REFERENCES t1 (id) on delete cascade  on update cascade
alter table t2 ADD constraint [FK_t2_t11] foreign key(id2) REFERENCES t1 (id)