Mongodb 简明教程

MongoDB - Drop Collection

在本章中,我们将看到如何通过 MongoDB 删除集合。

In this chapter, we will see how to drop a collection using MongoDB.

The drop() Method

MongoDB 的 db.collection.drop() 用于从数据库删除集合。

MongoDB’s db.collection.drop() is used to drop a collection from the database.

Syntax

drop() 命令的基本语法如下 −

Basic syntax of drop() command is as follows −

db.COLLECTION_NAME.drop()

Example

首先,检查你数据库中可用的集合 mydb

First, check the available collections into your database mydb.

>use mydb
switched to db mydb
>show collections
mycol
mycollection
system.indexes
tutorialspoint
>

现在删除具有名称 mycollection 的集合。

Now drop the collection with the name mycollection.

>db.mycollection.drop()
true
>

再次检查数据库中的集合列表。

Again check the list of collections into database.

>show collections
mycol
system.indexes
tutorialspoint
>

drop() 方法将返回 true,如果所选的集合已成功删除,否则它将返回 false。

drop() method will return true, if the selected collection is dropped successfully, otherwise it will return false.