MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Combiner plusieurs groupes dans une agrégation dans mongodb

Vous pouvez agréger comme ci-dessous :

  • $group par le store champ, calculez le subtotal .

  • $project un champ doc pour conserver le subtotal groupe intact, lors du groupe suivant.

  • $group par null et accumulez le total net.

Code :

db.invoices.aggregate([{
            $group: {
                "_id": "$store",
                "subtotal": {
                    $sum: "$total"
                }
            }
        }, {
            $project: {
                "doc": {
                    "_id": "$_id",
                    "total": "$subtotal"
                }
            }
        }, {
            $group: {
                "_id": null,
                "total": {
                    $sum: "$doc.total"
                },
                "result": {
                    $push: "$doc"
                }
            }
        }, {
            $project: {
                "result": 1,
                "_id": 0,
                "total": 1
            }
        }
    ])

Sortie :

{
    "total": 1000,
    "result": [{
            "_id": "ABC",
            "total": 700
        }, {
            "_id": "XYZ",
            "total": 300
        }
    ]
}