使用 MongoDB $Pull 删除数组中的文档

Shihab Sikder 2023年1月30日
  1. MongoDB $pull 运算符
  2. 带有条件的 MongoDB $pull 命令
  3. 在嵌套数组中使用 $pull
使用 MongoDB $Pull 删除数组中的文档

$pull 运算符可以从数组中获取任何现有项目。你可以从数组中提取一个或多个元素。

你可以从嵌套数组中删除任何特定对象。

MongoDB $pull 运算符

$pull 在 MongoDB 中用于从数组中删除现有元素。 $pullupdate 查询一起使用。

这是一个例子。我们插入了以下内容。

db.cart.insertMany( [
   {
      _id: 1,
      grocery:["biscuits", "oil", "honey", "milk", "paper"],
      electronics:["earphone", "bluetooth", "mouse", "keyboard"]
   },
   {
      _id: 2,
      grocery:["biscuits", "oil", "soda", "water", "paper"],
      electronics:["pendrive", "motherboard", "mouse", "SSD"]
   }
] )

这里有两个购物车。假设商店没有 paperSSDmouse 的库存。

因此,你想从购物车中删除这些产品。然后,你可以使用 $pull 运算符使用以下查询。

db.cart.updateMany({},
    {
        $pull:{ grocery: "paper",  electronics:{ $in:[ "SSD","mouse" ] } }
    }
)

$in 运算符采用一个数组来匹配每个元素与文档。完成此操作后,集合将如下所示。

{
      _id: 1,
      grocery:["biscuits", "oil", "honey", "milk"],
      electronics:["earphone", "bluetooth", "keyboard"]
   },
   {
      _id: 2,
      grocery:["biscuits", "oil", "soda", "water"],
      electronics:["pendrive", "motherboard"]
   }

带有条件的 MongoDB $pull 命令

假设我们有以下文档。

{
    _id: 1,
    price: [ 31, 50, 55, 66, 98, 25 ]
},
{
    _id: 2,
    price: [ 51, 55, 65, 91, 19, 26 ]
},

现在,你要删除 price 数组中值大于 50 的元素。然后命令将如下所示。

db.products.updateMany(
    {},
    { $pull: { price:{ $gte : 50} } }
)

你将看到我们使用 {} 作为 updateMany 的第一个参数。这是因为我们要更新所有元素。

假设你只想更新一些特定的 _id,那么命令将如下所示。

db.products.updateMany(
    {_id: 1},
    { $pull: { price:{ $gte : 50} } }
)

你也可以使用 _id 中的 $in 运算符选择多个 _id 进行更新并使用 pull 操作。

在嵌套数组中使用 $pull

假设你有以下文档集合。

db.survey.drop()

db.survey.insertMany( [
   {
      _id: 1,
      results: [
         {
            item: "A",
            score: 5,
            answers: [ { q: 1, a: 4 }, { q: 2, a: 6 } ]
         },
         {
            item: "B",
            score: 8,
            answers: [ { q: 1, a: 8 }, { q: 2, a: 9 } ]
         }
      ]
   },
   {
      _id: 2,
      results: [
         {
            item: "C",
            score: 8,
            answers: [ { q: 1, a: 8 }, { q: 2, a: 7 } ]
         },
         {
            item: "B",
            score: 4,
            answers: [ { q: 1, a: 0 }, { q: 2, a: 8 } ]
         }
      ]
   }
] )

我们想从 results 数组中删除那些 q 等于 2 且 a 大于等于 8 的项目。然后查询将是:

db.survey.updateMany(
  { },
  {
     $pull:
        {
           results:
              {
                 answers: { $elemMatch: { q: 2, a: { $gte: 8 } } }
              }
        }
  }
)

此操作后,更新后的集合将如下所示:

{
  _id: 1,
  results: [
    {
      item: 'A',
      score: 5,
      answers: [ { q: 1, a: 4 }, { q: 2, a: 6 } ]
    }
  ]
},
{
  _id: 2,
  results: [
    {
      item: 'C',
      score: 8,
      answers: [ { q: 1, a: 8 }, { q: 2, a: 7 } ]
    }
  ]
}

这个嵌套数组示例取自 MongoDB 的官方文档。在这里你可以阅读完整的文档并了解有关 $pull 运算符的更多信息。

作者: Shihab Sikder
Shihab Sikder avatar Shihab Sikder avatar

I'm Shihab Sikder, a professional Backend Developer with experience in problem-solving and content writing. Building secure, scalable, and reliable backend architecture is my motive. I'm working with two companies as a part-time backend engineer.

LinkedIn Website