Docs 菜单
Docs 主页
/
MongoDB Manual
/ / /

$count(聚合)

在此页面上

  • 定义
  • 兼容性
  • 语法
  • 行为
  • 示例
  • 了解详情
$count

将文档传递到下一阶段,该阶段包含输入到该阶段的文档数的计数。

注意

消歧

本页介绍了 $count 聚合管道阶段。对于 $count 聚合累加器,请参阅 $count (aggregation accumulator)

可以使用 $count 查找托管在以下环境中的部署:

  • MongoDB Atlas:用于云中 MongoDB 部署的完全托管服务

$count 通过以下语法实现:

{ $count: <string> }

<string> 是以计数为值的输出字段的名称。<string> 必须是非空字符串,不能以 $ 开头,也不能包含 . 字符。

返回类型由可存储计数最终值的最小类型表示:integerlongdouble

$count阶段相当于以下$group$project 序列:

db.collection.aggregate( [
{ $group: { _id: null, myCount: { $sum: 1 } } },
{ $project: { _id: 0 } }
] )

myCount 是存储计数的输出字段。您可以为输出字段指定其他名称。

如果输入数据集为空,则 $count 不会返回结果。

提示

另请参阅:

db.collection.countDocuments() 使用 $sum 表达式包装 $group 聚合阶段。

使用以下文档创建名为 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 }
] )

以下聚合操作有两个阶段:

  1. $match 阶段会排除 score 值小于或等于 80 的文档,以便将 score 大于 80 的文档传递到下一个阶段。

  2. $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" }
] )

后退

$collStats