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

Bedingte $summe in MongoDB

Wie Sammaye vorgeschlagen hat, müssen Sie den $cond verwenden Aggregationsprojektionsoperator, um dies zu tun:

db.Sentiments.aggregate(
    { $project: {
        _id: 0,
        Company: 1,
        PosSentiment: {$cond: [{$gt: ['$Sentiment', 0]}, '$Sentiment', 0]},
        NegSentiment: {$cond: [{$lt: ['$Sentiment', 0]}, '$Sentiment', 0]}
    }},
    { $group: {
        _id: "$Company",
        SumPosSentiment: {$sum: '$PosSentiment'},
        SumNegSentiment: {$sum: '$NegSentiment'}
    }});