$count(聚合)
定义
兼容性
可以使用 $count
查找托管在以下环境中的部署:
MongoDB Atlas:用于云中 MongoDB 部署的完全托管服务
MongoDB Enterprise:基于订阅、自我管理的 MongoDB 版本
MongoDB Community:源代码可用、免费使用且可自行管理的 MongoDB 版本
语法
$count
通过以下语法实现:
{ $count: <string> }
<string>
是以计数为值的输出字段的名称。<string>
必须是非空字符串,不能以 $
开头,也不能包含 .
字符。
行为
返回类型由可存储计数最终值的最小类型表示:integer
→long
→double
$count
阶段相当于以下$group
和$project
序列:
db.collection.aggregate( [ { $group: { _id: null, myCount: { $sum: 1 } } }, { $project: { _id: 0 } } ] )
myCount
是存储计数的输出字段。您可以为输出字段指定其他名称。
如果输入数据集为空,则 $count
不会返回结果。
示例
使用以下文档创建名为 scores
的集合:
db.scores.insertMany( [ { "_id" : 1, "subject" : "History", "score" : 88 }, { "_id" : 2, "subject" : "History", "score" : 92 }, { "_id" : 3, "subject" : "History", "score" : 97 }, { "_id" : 4, "subject" : "History", "score" : 71 }, { "_id" : 5, "subject" : "History", "score" : 79 }, { "_id" : 6, "subject" : "History", "score" : 83 } ] )
以下聚合操作有两个阶段:
$match
阶段会排除score
值小于或等于80
的文档,以便将score
大于80
的文档传递到下一个阶段。$count
阶段会返回聚合管道中剩余文档的计数,并将该值分配给名为passing_scores
的字段。
db.scores.aggregate( [ { $match: { score: { $gt: 80 } } }, { $count: "passing_scores" } ] )
该操作返回以下结果:
{ "passing_scores" : 4 }
如果输入数据集为空,则 $count
不会返回结果。以下示例不会返回结果,因为不存在分数大于 99
的文档:
db.scores.aggregate( [ { $match: { score: { $gt: 99 } } }, { $count: "high_scores" } ] )