我有一个mongo集合,我需要在这个集合中找到文件,字段名称和地址相同。
我搜索了很多,我只能找到MongoDb query condition on comparing 2 fields和MongoDB: Unique and sparse compound indexes with sparse values,但在这些问题中,他们正在查找字段a =字段b的文档,但我需要找到document1.a == document2.a
答案 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
}