ALTER TABLE table_nameDISABLE CONSTRAINT constraint_name;
select * from all_constraints where owner = 'SCOTT' and constraint_name = 'SYS_C007539';
select*from all_constraints where owner ='SCOTT'and constraint_name ='SYS_C007539';
本文共 296 字,大约阅读时间需要 1 分钟。
ALTER TABLE table_nameDISABLE CONSTRAINT constraint_name;
select * from all_constraints where owner = 'SCOTT' and constraint_name = 'SYS_C007539';
select*from all_constraints where owner ='SCOTT'and constraint_name ='SYS_C007539';
转载于:https://www.cnblogs.com/johnsonshu/p/6186682.html