oracle往dept表中插入dept表中插入重复数据,如何删除唯一约束,以及其它...

发布网友 发布时间:2024-10-24 15:13

我来回答

1个回答

热心网友 时间:2024-11-06 01:42

首先删除emp表中关联dept的外键约束:
alter table EMP drop constraint FK_DEPTNO;

再删除dept的主键约束:
alter table DEPT drop constraint PK_DEPT;

这样就能插入重复数据了。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com