如何查找具有相同字段的mongo文档

时间:2013-02-08 10:11:00

标签: mongodb

我有一个mongo集合,我需要在这个集合中找到文件,字段名称和地址相同。

我搜索了很多,我只能找到MongoDb query condition on comparing 2 fieldsMongoDB: Unique and sparse compound indexes with sparse values,但在这些问题中,他们正在查找字段a =字段b的文档,但我需要找到document1.a == document2.a

1 个答案:

答案 0 :(得分:86)

您可以使用Aggregation Framework$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
}