如何使用deleteOne()方法从MongoDB中的集合中删除文档?
要从MongoDB中的集合中删除文档,可以使用deleteOne()
方法。让我们首先创建一个集合并向其中插入一些文档:
> db.deleteDocumentsDemo.insert({"Name":"Larry","Age":23});WriteResult({ "nInserted" : 1 })
> db.deleteDocumentsDemo.insert({"Name":"Mike","Age":21});
WriteResult({ "nInserted" : 1 })
> db.deleteDocumentsDemo.insert({"Name":"Sam","Age":24});
WriteResult({ "nInserted" : 1 })
现在显示集合中的所有文档。查询如下:
> db.deleteDocumentsDemo.find().pretty();
以下是输出:
{"_id" : ObjectId("5c6ab0e064f3d70fcc914805"),
"Name" : "Larry",
"Age" : 23
}
{
"_id" : ObjectId("5c6ab0ef64f3d70fcc914806"),
"Name" : "Mike",
"Age" : 21
}
{ "_id" : ObjectId("5c6ab0f864f3d70fcc914807"), "Name" : "Sam", "Age" : 24 }
现在使用deleteOne()
命令。该名称表明它将仅从集合中删除一个文档。查询如下:
> db.deleteDocumentsDemo.deleteOne({"Name":"Larry"});
以下是输出:
{ "acknowledged" : true, "deletedCount" : 1 }
现在,在find()
命令的帮助下显示集合中的文档。查询如下:
> db.deleteDocumentsDemo.find().pretty();
以下是输出:
{"_id" : ObjectId("5c6ab0ef64f3d70fcc914806"),
"Name" : "Mike",
"Age" : 21
}
{ "_id" : ObjectId("5c6ab0f864f3d70fcc914807"), "Name" : "Sam", "Age" : 24 }
查看上面的示例输出,没有名称为“ Larry”的文档。
以上是 如何使用deleteOne()方法从MongoDB中的集合中删除文档? 的全部内容, 来源链接: utcz.com/z/316302.html