pymongo 的一些聚合操作

  • 聚合出大于2的
db['test'].aggregate([
                     {'$match': {}},
                     {'$group': {
                                '_id': {
                                    'name':'$field',
                                },
                                'count': {"$sum": 1}}
                          },
                        {'$match': {'count': {'$gt':1}}},

你可能感兴趣的:(pymongo 的一些聚合操作)