Mongodb 简明教程

MongoDB - Delete Document

在本章中,我们将了解如何通过 MongoDB 删除文档。

The remove() Method

MongoDB 的 remove() 方法用于从集合中移除文档。remove() 方法接受两个参数。一个是删除条件,第二个是 justOne 标志。

  1. deletion criteria − (可选)根据该文档的删除条件将被移除。

  2. justOne − (可选)如果被设置为 true 或 1,那么只移除一个文档。

Syntax

remove() 方法的基本语法如下 -

>db.COLLECTION_NAME.remove(DELLETION_CRITTERIA)

Example

考虑 mycol 集合具有以下数据。

{_id : ObjectId("507f191e810c19729de860e1"), title: "MongoDB Overview"},
{_id : ObjectId("507f191e810c19729de860e2"), title: "NoSQL Overview"},
{_id : ObjectId("507f191e810c19729de860e3"), title: "Tutorials Point Overview"}

以下示例将移除所有标题为“MongoDB Overview” 的文档。

>db.mycol.remove({'title':'MongoDB Overview'})
WriteResult({"nRemoved" : 1})
> db.mycol.find()
{"_id" : ObjectId("507f191e810c19729de860e2"), "title" : "NoSQL Overview" }
{"_id" : ObjectId("507f191e810c19729de860e3"), "title" : "Tutorials Point Overview" }

Remove Only One

如果有多个记录并且您只想删除第一个记录,请在 remove() 方法中设置 justOne 参数。

>db.COLLECTION_NAME.remove(DELETION_CRITERIA,1)

Remove All Documents

如果您没有指定删除条件,则 MongoDB 将从集合中删除整个文档。 This is equivalent of SQL’s truncate command.

> db.mycol.remove({})
WriteResult({ "nRemoved" : 2 })
> db.mycol.find()
>