如何删除、恢复有约束关系的数据

版权声明:若需要转载,请标明原文地址。 https://blog.csdn.net/qq_41903671/article/details/89634742
//删除
alter table *** nocheck constraint all
delete from ***
//恢复
alter table *** check constraint all

猜你喜欢

转载自blog.csdn.net/qq_41903671/article/details/89634742