drop collection

用于删除集合空间中的集合。

语法

drop collection .

参数

参数名参数类型描述是否必填
cs_namestring集合空间名。
cl_namestring集合名。

Note:

  • 集合空间必须在数据库中存在。
  • 集合必须在该集合空间中存在。

返回值

无。

示例

  • 删除集合空间 foo 中的集合 bar。

    1. //等价于 db.foo.dropCL("bar")
    2. > db.execUpdate("drop collection foo.bar")
    3. Takes 0.4329s.