MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Kombinieren Sie mehrere Gruppen in einer Aggregation in Mongodb

Sie könnten wie folgt aggregieren:

  • $group im store Berechnen Sie die subtotal .

  • $project ein Feld doc um die subtotal beizubehalten Gruppe im Takt, während der nächsten Gruppe.

  • $group durch null und kumuliere die Nettosumme.

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
            }
        }
    ])

Ausgabe:

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