MongoDB – 删除集合

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。

觉得文章有用?

点个广告表达一下你的爱意吧 !😁