MongoDB 聚合 $count
聚合 $count
此聚合阶段计算从上一阶段传递的所有文档的总数。
示例
在本例中,我们使用的是从我们的示例数据中加载的“sample_restaurants”数据库,该数据库位于聚合简介部分。
db.restaurants.aggregate([
{
$match: { "cuisine": "Chinese" }
},
{
$count: "totalChinese"
}
])
亲自尝试 »
这将返回$count
阶段的文档数量,作为一个名为“totalChinese”的字段。