首頁  >  文章  >  資料庫  >  使用 update() 和 $pull 從 MongoDB 集合中刪除陣列元素

使用 update() 和 $pull 從 MongoDB 集合中刪除陣列元素

WBOY
WBOY轉載
2023-09-13 16:45:091333瀏覽

使用 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"
   ]
}

以上是使用 update() 和 $pull 從 MongoDB 集合中刪除陣列元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除