使用 update() 和 $pull 从 MongoDB 集合中删除数组元素

使用 update() 和 $pull 从 MongoDB 集合中删除数组元素

让我们首先创建一个包含文档的集合 –

> db.removingAnArrayElementDemo.insertOne({"UserMessage":["Hi","Hello","Bye"]});
{
"acknowledged" : true,
"insertedId" : ObjectId("5cef97bdef71edecf6a1f6a4")
}

借助 find() 方法显示集合中的所有文档 –

> db.removingAnArrayElementDemo.find().pretty();

输出

{
"_id" : ObjectId("5cef97bdef71edecf6a1f6a4"),
"UserMessage" : [
"Hi",
"Hello",
"Bye"
]
}

以下是从 MongoDB 中删除数组元素的查询 –

> db.removingAnArrayElementDemo.update(
{_id:ObjectId("5cef97bdef71edecf6a1f6a4")},
{ "$pull": { "UserMessage": "Hello" } }
);
WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })

让我们再检查一下文档:

> db.removingAnArrayElementDemo.find().pretty();

输出

{
.
"_id" : ObjectId("5cef97bdef71edecf6a1f6a4"),
"UserMessage" : [
"Hi",
"Bye"
]
}
原文来自:www.php.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容