列出不重复数据项
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 } }
])