如何使用MongoDB过滤子文档中的数组

如何使用MongoDB过滤子文档中的数组,第1张

如何使用MongoDB过滤子文档中的数组

使用

aggregate
是正确的方法,但在应用数组之前需要先
$unwind
list
数组进行
$match
过滤,以便可以过滤单个元素,然后用于
$group
将其放回原处:

db.test.aggregate([    { $match: {_id: ObjectId("512e28984815cbfcb21646a7")}},    { $unwind: '$list'},    { $match: {'list.a': {$gt: 3}}},    { $group: {_id: '$_id', list: {$push: '$list.a'}}}])

输出:

{  "result": [    {      "_id": ObjectId("512e28984815cbfcb21646a7"),      "list": [        4,        5      ]    }  ],  "ok": 1}

MongoDB 3.2更新

从3.2发行版开始,您可以使用新的

$filter
聚合运算符来提高效率,只需list在$project:中包括所需的元素即可:

db.test.aggregate([    { $match: {_id: ObjectId("512e28984815cbfcb21646a7")}},    { $project: {        list: {$filter: { input: '$list', as: 'item', cond: {$gt: ['$$item.a', 3]}        }}    }}])


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5430874.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存