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

MongoDB Gruppo di aggregazione ordini/vendite per mese Somma totale + campo Conteggio

Puoi utilizzare $cond come di seguito:

Order.aggregate([
    {
        $group: {
            _id: {
                month: { $month: "$date" },
                year: { $year: "$date" } 
            },
            total: { $sum: "$total" },
            countByApp: { $sum: { $cond: [ {$eq: [ "$source", "APP" ]} , 1, 0] } },
            countByWeb: { $sum: { $cond: [ {$eq: [ "$source", "WEB" ]} , 1, 0] } },
        }
    }
])

Mongo Playground