db.getCollection(‘archive_person‘).aggregate(
{‘$group‘:{
‘_id‘: {‘category‘: ‘$category‘},
‘uniqueIds‘: {‘$addToSet‘: ‘$_id‘},
‘count‘ : {‘$sum‘: 1}
}},
{‘$match‘: {
‘count‘: {‘$gt‘: 1}
}}
)
category 替换为要查询的重复字段