$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
将是包含该计数的输出字段。您可以为该输出字段指定其他名称。
例子
名为 scores
的集合包含以下文档:
{ "_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 }