日期:2014-05-18 浏览次数:20414 次
--除了建立约束时可以指定on delete cascade --还可以执行不检测外键约束,删完你要的数据后恢复检测,此处t为主表,tref为外键表,fk_t_tref为约束 alter table tref nocheck constraint fk_t_tref delete t where .. alter table tref check constraint fk_t_tref
------解决方案--------------------
先删除从表,再删除主表。或者修改外关键字约束,允许级联删除。这个可以通过GUI界面调整。