oracle 数据库 主键索引重建

oracle 数据库 主键索引重建

alter table table_name drop primary key;

alter table table_name add constraint pk_index_name primary key(row_name);

原文地址:https://www.cnblogs.com/qiuyu666/p/11758451.html