从MongoDB集合中删除数组元素
要删除数组元素,只需将$pull与一起使用update()
。让我们创建一个包含文档的集合-
> db.demo146.insertOne({"ListOfEmployeeNames":["Chris","David","Bob","Mike"]});{
"acknowledged" : true,
"insertedId" : ObjectId("5e32f54ffdf09dd6d08539bd")
}
在find()
方法的帮助下显示集合中的所有文档-
> db.demo146.find();
这将产生以下输出-
{ "_id" : ObjectId("5e32f54ffdf09dd6d08539bd"), "ListOfEmployeeNames" : [ "Chris", "David", "Bob", "Mike" ] }
以下是从MongoDB中删除数组元素的查询-
> db.demo146.update({}, { "$pull": { "ListOfEmployeeNames": "Bob" } });WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })
在find()
方法的帮助下显示集合中的所有文档-
> db.demo146.find();
这将产生以下输出-
{ "_id" : ObjectId("5e32f54ffdf09dd6d08539bd"), "ListOfEmployeeNames" : [ "Chris", "David", "Mike" ] }
以上是 从MongoDB集合中删除数组元素 的全部内容, 来源链接: utcz.com/z/355648.html