按每个组的限制和排序分组
db.getCollection('logSrcDest').aggregate(
{
$group: {
_id: {
"src": "$srcId",
"dest": "$destId",
"account": "$account"
},
total: { $sum : "$count" }
}
},
{ $sort: { total : -1 } },
{ $limit: 10 }
);
我经历过这个: mongo with limit and sort 但我找不到我要求的答案。
在这方面的任何帮助将不胜感激