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。

查看笔记

扫码一下
查看教程更方便