gpt4 book ai didi

mongodb - 查找数组的所有元素都具有特定值的文档

转载 作者:可可西里 更新时间:2023-11-01 10:04:05 26 4
gpt4 key购买 nike

这基本上是一个简单的问题,但我找不到它的查询函数。

示例集合:

{
_id: 1,
foo: [
{ bar: 9 },
{ bar: 16 }
]
}

{
_id: 2,
foo: [
{ bar: 9 },
{ bar: 9 },
{ bar: 9 }
]
}

示例输出:

{
_id: 2,
foo: [
{ bar: 9 },
{ bar: 9 },
{ bar: 9 }
]
}

因为这是唯一一个每个 foo.bar = 9 的文档。

我正在寻找的查询:

“查找所有文档,其中 foo.bar = 9 FOR EVERY foo.bar in this document.”

或者我是否需要“查找所有不在此处的文档(foo.bar != 9)”之类的东西?

提前致谢!

最佳答案

db.c.find({
"foo.bar" : {
$exists : true
},
"foo" : {
$not : {
$elemMatch : {
"bar" : {
$ne : 9
}
}
}
}
});

关于mongodb - 查找数组的所有元素都具有特定值的文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26392534/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com