📜  mongodb 聚合组 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:49.178000             🧑  作者: Mango

代码示例2
#equivalent of the following SQL instruction:
# SELECT COUNT(*) FROM Table
# GROUP BY your_field
query = db.collection.aggregate([
    { 
        "$group": {
            "_id": "$your_field", #GROUP BY your_field
            "total": {"$sum":1}   #COUNT(*)
        }
    }
])