Използване на http://docs.mongodb.org/manual /tutorial/aggregation-zip-code-data-set/ за справка, която искате:
db.bigdata.aggregate(
{
$match: {
memberId: 61
}
},
{
$group: {
_id: "$memberId",
total : { $sum : "$amount" }
}
})
От документите на MongoDB: