我的文件如下:
{
name: "testing",
place:"London",
documents: [
{
x:1,
y:2,
},
{
x:1,
y:3,
},
{
x:4,
y:3,
}
]
}
我想检索所有匹配的文件,即我想要以下格式的o / p:
{
name: "testing",
place:"London",
documents: [
{
x:1,
y:2,
},
{
x:1,
y:3,
}
]
}
我试过的是:
db.test.find({"documents.x": 1},{_id: 0, documents: {$elemMatch: {x: 1}}});
但是,它只给出了第一个条目。
答案 0 :(得分:3)
正如JohnnyHK所说,MongoDB: select matched elements of subcollection中的答案解释得很清楚。
在您的情况下,聚合将如下所示:
(注意:第一场比赛并非绝对必要,但它有助于提高性能(可以使用索引)和内存使用量(在有限的一组中展开)
> db.xx.aggregate([
... // find the relevant documents in the collection
... // uses index, if defined on documents.x
... { $match: { documents: { $elemMatch: { "x": 1 } } } },
... // flatten array documennts
... { $unwind : "$documents" },
... // match for elements, "documents" is no longer an array
... { $match: { "documents.x" : 1 } },
... // re-create documents array
... { $group : { _id : "$_id", documents : { $addToSet : "$documents" } }}
... ]);
{
"result" : [
{
"_id" : ObjectId("515e2e6657a0887a97cc8d1a"),
"documents" : [
{
"x" : 1,
"y" : 3
},
{
"x" : 1,
"y" : 2
}
]
}
],
"ok" : 1
}
有关aggregate()的详细信息,请参阅http://docs.mongodb.org/manual/applications/aggregation/