文档中心
v3.4

SequoiaDB 简介

安装部署

数据库实例

分布式引擎

SAC 管控中心

参考手册

常见问题及解答(FAQ)

版本信息

drop index

drop index 用于删除集合中的索引。

语法

drop index <index_name> on <cs_name>.<cl_name>

参数

参数名 参数类型 描述 是否必填
index_name string 索引名
cs_name string 集合名
cl_name string 集合名

返回值

示例

删除集合 sample.employee 中名为"test_index"的索引

// 等价于 db.sample.employee.dropIndex("test_index")
> db.execUpdate("drop index test_index on sample.employee") 
回到顶部