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。