发布网友 发布时间: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; 这样就能插入重复数据了。