MongoDB — 删除集合



在本章中,我们将看到如何使用 MongoDB 来删除集合。

drop() 方法

MongoDB 的 db.collection.drop() 用于从数据库中删除集合。

语法

drop() 命令的基本语法如下 −

db.COLLECTION_NAME.drop()

示例

首先,检查数据库 mydb 中的可用集合。

>use mydb
switched to db mydb
>show collections
mycol
mycollection
system.indexes
tutorialspoint
>

现在删除名为 mycollection 的集合。

>db.mycollection.drop()
true
>

再次检查数据库中的集合列表。

>show collections
mycol
system.indexes
tutorialspoint
>

如果选定的集合被成功删除,则 drop() 方法将返回true,否则将返回false。

广告