oracle删除主键索引和普通索引

-- 删除普通索引

drop index  索引名字

 

--创建普通索引

create index  索引名  on  表名(索引对应的列名);

 

--删除主键索引

alter table  表名  drop  constraint  索引名

 

--创建主键索引

alter  table  表名  add constraint  表名  add constraint  索引名   primary key (主键);

 

posted @ 2020-07-18 10:54  烟雨蒙尘  阅读(5945)  评论(0编辑  收藏  举报