我想查询如下,但这只包含一个$cond
。
如何使用两个$cond
进行查询?
collection.aggregate(
{
$match : {
'_id' : {$in:ids}
}
},
{
$group: {
_id: '$someField',
...
count: {$sum: { $cond: [ { $eq: [ "$otherField", false] } , 1, 0 ] }}
}
},
function(err, result){
...
}
);
答案 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
operator:http://docs.mongodb.org/manual/reference/operator/aggregation/#boolean-operators