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

Kombiner flere grupper i en aggregering i mongodb

Du kan samle som nedenfor:

  • $group ved store feltet skal du beregne subtotal .

  • $project et felt doc for at beholde subtotal gruppe i takt, under den næste gruppe.

  • $group af null og akkumulere nettototalen.

Kode:

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

Output:

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


  1. Redis Pub-Sub eller Socket.IO's udsendelse

  2. Hvordan viser man base64-billedet i reaktion?

  3. Doktrin ODM / MongoDB prøver ikke forespørgsler igen?

  4. Importerer csv til mongodb ved hjælp af PHP-kode