4

以下に示すドキュメントがあります。

{
  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}}});

ただし、最初のエントリのみを提供します。

4

1 に答える 1

5

JohnnyHK が言ったように、MongoDB の答え: サブコレクションの一致する要素を選択すると、それがよく説明されます。

あなたの場合、集計は次のようになります。

(注: 最初の一致は厳密には必要ありませんが、パフォーマンス (インデックスを使用できます) とメモリ使用量 (限られたセットでの $unwind) に関して役立ちます)

> 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/を参照してください。

于 2013-04-05T02:03:47.967 に答える