Mongodb 简明教程
MongoDB - Drop Collection
在本章中,我们将看到如何通过 MongoDB 删除集合。
The drop() Method
MongoDB 的 db.collection.drop() 用于从数据库删除集合。
Example
首先,检查你数据库中可用的集合 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。