Mongodb查询重复数据

Mongodb查询重复数据

脚本

 db.storageFile.aggregate(
    {
        '$group': {
            '_id': {
                'md5': '$md5'
            },
            'uniqueIds': {
                '$addToSet': '$_id'
            },
            'count': {
                '$sum': 1
            }
        }
    },
    {
        '$match': {
            'count': {
                '$gt': 1
            }
        }
    }
)
    原文作者:向天再借500年V
    原文地址: https://blog.csdn.net/Asia1752/article/details/115252036
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞