2

收集文件test如下:

{a:2, list:[{lang:"en", value:"Mother"}, {lang:"de", value:"Mutter"}] }

当我查询时:

db.test.find({"list.lang":"de", "list.value": "Mother" })

我希望什么也得不到,但是由于存在满足 MongoDB 解决的总条件的 2 个嵌套条目的文档的原因{a:2}

如何修复查询以仅检索两个内部字段同时满足指定条件的文档?

4

1 回答 1

4

使用$elemMatch

db.test.find({ "list": { "$elemMatch": {"lang":"de", "value": "Mother" } } })

使用$all

db.test.find({ "list": { "$all": [{"lang":"de", "value": "Mother" }] } })
于 2016-09-19T17:27:38.677 回答