42

我有一个 mongo 集合,我需要在这个集合中查找文档,其中字段名称和地址是相等的。

我搜索了很多,我只能在比较 2 个字段和MongoDB 时找到MongoDb 查询条件:Unique and sparse Compound index with sparse values,但在这些问题中,他们正在寻找字段 a = 字段 b 的文档,但我需要找到 document1.a == document2.a

4

1 回答 1

117

您可以使用聚合框架$group.

示例数据设置:

// Batch insert some test data
db.mycollection.insert([
    {a:1, b:2, c:3},
    {a:1, b:2, c:4},
    {a:0, b:2, c:3},
    {a:3, b:2, c:4}
])

聚合查询:

db.mycollection.aggregate(
    { $group: { 
        // Group by fields to match on (a,b)
        _id: { a: "$a", b: "$b" },

        // Count number of matching docs for the group
        count: { $sum:  1 },

        // Save the _id for matching docs
        docs: { $push: "$_id" }
    }},

    // Limit results to duplicates (more than 1 match) 
    { $match: {
        count: { $gt : 1 }
    }}
)

示例输出:

{
    "result" : [
        {
            "_id" : {
                "a" : 1,
                "b" : 2
            },
            "count" : 2,
            "docs" : [
                ObjectId("5162b2e7d650a687b2154232"),
                ObjectId("5162b2e7d650a687b2154233")
            ]
        }
    ],
    "ok" : 1
}
于 2013-04-08T12:16:15.050 回答