使用Mongo中每个组的排序和限制来聚合数据

时间:2016-09-29 07:57:01

标签: mongodb sorting mongodb-query aggregation-framework mongodb-aggregation

按每个组的限制和排序分组

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 但我找不到我要求的答案。

在这方面的任何帮助将不胜感激

0 个答案:

没有答案