Sử dụng http://docs.mongodb.org/manual / hướng dẫn / tổng hợp-zip-code-data-set / để tham khảo bạn muốn:
db.bigdata.aggregate(
{
$match: {
memberId: 61
}
},
{
$group: {
_id: "$memberId",
total : { $sum : "$amount" }
}
})
Từ tài liệu MongoDB: