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。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程