共计 481 个字符,预计需要花费 2 分钟才能阅读完成。
列出不反复数据项
db.getCollection('records').aggregate([{$match: {is_job: true}},
])
按指定字段进行统计
db.getCollection('records').aggregate([{$match: {is_job: true}},
{$group: {_id: "$gname", count:{$sum: 1}}},
])
group 外面定义了数据返回的字段,当初有 id(id 的意思是作为主键)和 count 字段
按指定字段排序
db.getCollection('records').aggregate([{$match: {is_job: true}},
{$group: {_id: "$gname", count:{$sum: 1}}},
{$sort: { count : -1} }
])
扩大浏览
MongoDB 对不反复数据分组进行计数
https://blog.csdn.net/weixin_…MongoDB 的 skip,limit,sort 执行程序,以及 aggregate
https://blog.csdn.net/jason_c…
正文完