如何使用多个$ cond对查询进行分组?

时间:2013-12-30 09:44:12

标签: mongodb aggregation-framework

我想查询如下,但这只包含一个$cond

如何使用两个$cond进行查询?

collection.aggregate(
    { 
        $match : { 
            '_id' : {$in:ids}
        } 
    },
    {
        $group: {
            _id: '$someField',
            ...
            count: {$sum: { $cond: [ { $eq: [ "$otherField", false] } , 1, 0 ] }}
        }
    },
    function(err, result){
        ...
    }
);

1 个答案:

答案 0 :(得分:45)

您想在{$cond:[]}中使用复合表达式,例如:

collection.aggregate(
    { 
        $match : { 
            '_id' : {$in:ids}
        } 
    },
    {
        $group: {
            _id: '$someField',
            ...
            count: {$sum: { $cond: [ {$and : [ { $eq: [ "$otherField", false] },
                                               { $eq: [ "$anotherField","value"] }
                                     ] },
                                     1,
                                     0 ] }}
        }
    },
    function(err, result){
        ...
    }
);

此处记录了$and operatorhttp://docs.mongodb.org/manual/reference/operator/aggregation/#boolean-operators