MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Combina più gruppi in un'aggregazione in mongodb

Potresti aggregare come di seguito:

  • $group dal store campo, calcola il subtotal .

  • $project un campo doc per mantenere il subtotal gruppo intatto, durante il prossimogruppo.

  • $group per null e accumula il totale netto.

Codice:

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

Risultato:

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