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

-- 删除普通索引 drop index 索引名字 --创建普通索引 create index 索引名 on 表名(索引对应的列名); --删除主键索引 alter table 表名 drop constraint 索引名 --创建主键索引 alter table 表名 add constraint
posted @ 2020-07-18 10:54  烟雨蒙尘  阅读(5624)  评论(0编辑  收藏  举报