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

MongoDB – Wie kann ich mehrere Gruppen in einer Aggregationspipeline verwenden?

Ich konnte eine Lösung mit $cond in meiner $group-Operation finden.

db.project.aggregate(
{ $match : { brandId : 4 } },
{ $project : {
    _id : 0,
    brandId : 1,
    count : 1,
    day : 1}
},  
 { $group : {
    _id : "$brand",
    TotalCount : { $sum : "$count" },        
    countInTimeRange : {$sum: { $cond: [ { $and: [{$gte: [ "$day", new Date(2014, 0, 6) ] }, {$lte: [ "$day", new Date(2014, 0, 8) ] }] }, "$count", 0 ] }}

}}    
)