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。