删除索引。删除索引表之前请使用ALTER INDEX方法将索引表设置成DISABLED状态。
语法
dropindex_statement ::= drop index [if exists] index_name on table_name;
示例
drop index idx1 on test;
删除索引。删除索引表之前请使用ALTER INDEX方法将索引表设置成DISABLED状态。
dropindex_statement ::= drop index [if exists] index_name on table_name;
drop index idx1 on test;