在oracle中,可以利用「drop index」語句刪除索引,該語句的作用就是刪除指定的索引,語法為「drop index 索引名;」。 本教學操作環境:Windows10系統、Oracle 11g版、Dell G3電腦。 oracle怎麼刪除索引 drop index index_name; #1、建立索引create index 索引名 on 表名(列名);登入後複製2、刪除索引drop index 索引名;登入後複製3、建立組合索引create index 索引名 on 表名(列名1,,列名2);登入後複製4、查詢索引--根据索引名,查询表索引字段 select * from user_ind_columns where index_name='索引名'; --根据表名,查询一张表的索引 select * from user_indexes where table_name='表名';登入後複製推薦教學:《Oracle教學》