oracle“删除”主键约束的方法有两个
1:alter table 表名 drop primary key;
这个是把主键从表中去除,而不是真正的删除主键
2:alter table 表名 drop constraint 约束名;
这个是把主键删除,可以再次添加同名主键