Sum
To get the sum of a grouped field when using the Aggregation Framework of MongoDB, you'll need to use $group
and $sum
:
db.characters.aggregate([ {
$group: {
_id: null,
total: {
$sum: "$wins"
}
}
} ] )
In this case, if you want to get the sum of all of the wins
, you need to refer to the field name using the $
syntax as $wins
which just fetches the values of the wins
field from the grouped documents and sums them together.
Count
You can sum
other values as well by passing in a specific value (as you'd done in your comment). If you had
{ "$sum" : 1 }
,
that would actually be a count of all of the wins
, rather than a total.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…