MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

$ soma condicional no MongoDB


Como Sammaye sugeriu, você precisa usar o $cond operador de projeção de agregação para fazer isso:
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'}
    }});