aggregate

On this page本页内容

Definition定义

aggregate

Performs aggregation operation using the aggregation pipeline. 使用聚合管道执行聚合操作。The pipeline allows users to process data from a collection or other source with a sequence of stage-based manipulations.管道允许用户通过一系列基于阶段的操作处理来自集合或其他源的数据。

Syntax语法

Changed in version 5.0.在版本5.0中更改

The command has following syntax:该命令具有以下语法:

{
  aggregate: "<collection>" || 1,
  pipeline: [ <stage>, <...> ],
  explain: <boolean>,
  allowDiskUse: <boolean>,
  cursor: <document>,
  maxTimeMS: <int>,
  bypassDocumentValidation: <boolean>,
  readConcern: <document>,
  collation: <document>,
  hint: <string or document>,
  comment: <any>,
  writeConcern: <document>,
  let: <document> // Added in MongoDB 5.0
}
Tip提示

Rather than run the aggregate command directly, most users should use the db.collection.aggregate() helper provided in mongosh or the equivalent helper in their driver.大多数用户应该使用mongosh中提供的db.collection.aggregate()助手或驱动程序中的等效助手,而不是直接运行aggregate命令。

Command Fields命令字段

The aggregate command takes the following fields as arguments:aggregate命令将以下字段作为参数:

Field字段Type类型Description描述
aggregatestringThe name of the collection or view that acts as the input for the aggregation pipeline. 用作聚合管道输入的集合或视图的名称。Use 1 for collection agnostic commands.使用1表示与集合无关的命令。
pipelinearrayAn array of aggregation pipeline stages that process and transform the document stream as part of the aggregation pipeline.聚合管道阶段的数组,作为聚合管道的一部分处理和转换文档流。
explainboolean

Optional. 可选。Specifies to return the information on the processing of the pipeline.指定返回有关管道处理的信息。

Not available in multi-document transactions.多文档事务处理中不可用。

allowDiskUse

boolean

Optional. 可选。Enables writing to temporary files. When set to true, aggregation stages can write data to the _tmp subdirectory in the dbPath directory.允许写入临时文件。当设置为true时,聚合阶段可以将数据写入dbPath目录中的_tmp子目录。

By default, allowDiskUse is false.默认情况下,allowDiskUsefalse

Starting in MongoDB 4.2, the profiler log messages and diagnostic log messages includes a usedDisk indicator if any aggregation stage wrote data to temporary files due to memory restrictions.从MongoDB 4.2开始,如果任何聚合阶段由于内存限制将数据写入临时文件,探查器日志消息诊断日志消息都包含usedDisk指示符。

cursordocument

Specify a document that contains options that control the creation of the cursor object.指定包含控制游标对象创建的选项的文档。

Changed in version 3.6.在版本3.6中更改

MongoDB 3.6 removes the use of aggregate command without the cursor option unless the command includes the explain option. MongoDB 3.6删除了不带cursor选项的aggregate命令,除非该命令包含explain选项。Unless you include the explain option, you must specify the cursor option.除非包含explain选项,否则必须指定cursor选项。
  • To indicate a cursor with the default batch size, specify cursor: {}.若要使用默认批次大小指示游标,请指定cursor: {}
  • To indicate a cursor with a non-default batch size, use cursor: { batchSize: <num> }.要使用非默认批次大小指示游标,请使用cursor: { batchSize: <num> }

maxTimeMSnon-negative integer

Optional. 可选。Specifies a time limit in milliseconds for processing operations on a cursor. 指定处理游标操作的时间限制(毫秒)。If you do not specify a value for maxTimeMS, operations will not time out. 如果未指定maxTimeMS的值,操作将不会超时。A value of 0 explicitly specifies the default unbounded behavior.0明确指定默认的无边界行为。

MongoDB terminates operations that exceed their allotted time limit using the same mechanism as db.killOp(). MongoDB使用与db.killOp()相同的机制终止超过分配时间限制的操作。MongoDB only terminates an operation at one of its designated interrupt points.MongoDB仅在其指定的中断点之一处终止操作。

bypassDocumentValidationboolean

Optional. 可选。Applicable only if you specify the $out or $merge aggregation stages.仅当指定$out$merge聚合阶段时才适用。

Enables aggregate to bypass document validation during the operation. 允许aggregate在操作期间绕过文档验证。This lets you insert documents that do not meet the validation requirements.这允许您插入不符合验证要求的文档。

readConcerndocument

Optional. 可选。Specifies the read concern.指定读取关注

Starting in MongoDB 3.6, the readConcern option has the following syntax: readConcern: { level: <value> }从MongoDB 3.6开始,readConcern选项具有以下语法:readConcern: { level: <value> }

Possible read concern levels are:可能的读取问题级别包括:

  • "local". This is the default read concern level for read operations against the primary and secondaries.。这是针对主设备和辅助设备的读取操作的默认读取关注级别。
  • "available". Available for read operations against the primary and secondaries. 。可用于针对主要和次要磁盘的读取操作。"available" behaves the same as "local" against the primary and non-sharded secondaries. 对于主分区和非分片的次分区,其行为与"local"相同。The query returns the instance's most recent data.查询返回实例的最新数据。
  • "majority". Available for replica sets that use WiredTiger storage engine.。适用于使用WiredTiger存储引擎的副本集。
  • "linearizable". Available for read operations on the primary only.。仅适用于primary服务器上的读取操作。

For more formation on the read concern levels, see Read Concern Levels.有关读取关注级别的更多信息,请参阅读取关注级别

Starting in MongoDB 4.2, the $out stage cannot be used in conjunction with read concern "linearizable". 从MongoDB 4.2开始,$out阶段不能与读取关注点“线性化”结合使用。That is, if you specify "linearizable" read concern for db.collection.aggregate(), you cannot include the $out stage in the pipeline.也就是说,如果为db.collection.aggregate()指定"linearizable"读取关注点,则不能在管道中包含$out阶段。

The $merge stage cannot be used in conjunction with read concern "linearizable". $merge阶段不能与读取关注点"linearizable"结合使用。That is, if you specify "linearizable" read concern for db.collection.aggregate(), you cannot include the $merge stage in the pipeline.也就是说,如果为db.collection.aggregate()指定"linearizable"读取关注点,则不能在管道中包含$merge阶段。

collationdocument

Optional.可选。

Specifies the collation to use for the operation.指定用于操作的排序规则

Collation allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.允许用户为字符串比较指定特定于语言的规则,例如字母大小写和重音标记的规则。

The collation option has the following syntax:排序选项具有以下语法:

collation: {
   locale: <string>,
   caseLevel: <boolean>,
   caseFirst: <string>,
   strength: <int>,
   numericOrdering: <boolean>,
   alternate: <string>,
   maxVariable: <string>,
   backwards: <boolean>
}

When specifying collation, the locale field is mandatory; all other collation fields are optional. 指定排序规则时,locale字段是必需的;所有其他排序字段都是可选的。For descriptions of the fields, see Collation Document.有关字段的描述,请参阅排序规则文档

If the collation is unspecified but the collection has a default collation (see db.createCollection()), the operation uses the collation specified for the collection.如果未指定排序规则,但集合具有默认排序规则(请参阅db.createCollection()),则操作将使用为集合指定的排序规则。

If no collation is specified for the collection or for the operations, MongoDB uses the simple binary comparison used in prior versions for string comparisons.如果没有为集合或操作指定排序规则,MongoDB将使用以前版本中使用的简单二进制比较进行字符串比较。

You cannot specify multiple collations for an operation. 不能为一个操作指定多个排序规则。For example, you cannot specify different collations per field, or if performing a find with a sort, you cannot use one collation for the find and another for the sort.例如,不能为每个字段指定不同的排序规则,或者如果使用排序执行查找,则不能将一个排序规则用于查找,而将另一个用于排序。

hintstring or document

Optional. 可选。The index to use for the aggregation. 用于聚合的索引。The index is on the initial collection/view against which the aggregation is run.索引位于运行聚合的初始集合/视图上。

Specify the index either by the index name or by the index specification document.通过索引名称或索引规范文档指定索引。

Note注意

The hint does not apply to $lookup and $graphLookup stages.hint不适用于$lookup阶段和$graphLookup阶段。

commentany

Optional. 可选。A user-provided comment to attach to this command. 用户提供了附加到此命令的注释。Once set, this comment appears alongside records of this command in the following locations:设置后,此注释将显示在该命令的记录旁边的以下位置:

A comment can be any valid BSON type(string, integer, object, array, etc).注释可以是任何有效的BSON类型(字符串、整数、对象、数组等)。

Note注意

Any comment set on an aggregate command is inherited by any subsequent getMore commands running with the same cursorId returned from the aggregate command.aggregate命令上的任何注释集都将由使用aggregate命令返回的相同cursorId运行的任何后续getMore命令继承。

Changed in version 4.4..在版本4.4.中更改

Prior to 4.4, comments could only be strings.在4.4之前,注释只能是字符串。

writeConcerndocument

Optional. 可选。A document that expresses the write concern to use with the $out or $merge stage.表示要与$out$merge阶段一起使用的写入关注的文档。

Omit to use the default write concern with the $out or $merge stage.省略以使用$out$merge阶段的默认写关注点。

letdocument

Optional.可选。

Specifies a document with a list of variables. 使用变量列表指定文档。This allows you to improve command readability by separating the variables from the query text.这允许您通过将变量与查询文本分离来提高命令的可读性。

The document syntax is:文档语法为:

{ <variable_name_1>: <expression_1>,
  ...,
  <variable_name_n>: <expression_n> }

The variable is set to the value returned by the expression, and cannot be changed afterwards.变量被设置为表达式返回的值,以后不能更改。

To access the value of a variable in the command, use the double dollar sign prefix ($$) together with your variable name in the form $$<variable_name>. 要访问命令中变量的值,请使用双美元符号前缀($$)和变量名,格式为$$<variable_name>For example: $$targetTotal.例如:$$targetTotal

Note注意

To use a variable to filter results in a pipeline $match stage, you must access the variable within the $expr operator.要在管道$match阶段中使用变量筛选结果,必须在$expr运算符中访问该变量。

For a complete example using let and variables, see Use Variables in let.有关使用let和变量的完整示例,请参阅let中使用变量

New in version 5.0.在版本5.0中新增

MongoDB 3.6 removes the use of aggregate command without the cursor option unless the command includes the explain option. MongoDB 3.6删除了不带cursor选项的aggregate命令,除非该命令包含explain选项。Unless you include the explain option, you must specify the cursor option.除非包含explain选项,否则必须指定cursor选项。

  • To indicate a cursor with the default batch size, specify cursor: {}.要使用默认批处理大小指示游标,请指定cursor: {}
  • To indicate a cursor with a non-default batch size, use cursor: {batchSize: <num> }.要使用非默认批次大小指示游标,请使用cursor: {batchSize: <num> }

For more information about the aggregation pipeline Aggregation Pipeline, Aggregation Reference, and Aggregation Pipeline Limits.有关聚合管道聚合管道聚合引用聚合管道限制的详细信息。

Sessions会话

New in version 4.0.在版本4.0中新增

For cursors created inside a session, you cannot call getMore outside the session.对于在会话内创建的游标,不能在会话外调用getMore

Similarly, for cursors created outside of a session, you cannot call getMore inside a session.同样,对于在会话外部创建的游标,不能在会话内部调用getMore

Session Idle Timeout会话空闲超时

Starting in MongoDB 3.6, MongoDB drivers and mongosh associate all operations with a server session, with the exception of unacknowledged write operations. 从MongoDB 3.6开始,MongoDB驱动程序和mongosh将所有操作与服务器会话相关联,但未确认的写入操作除外。For operations not explicitly associated with a session (i.e. using Mongo.startSession()), MongoDB drivers and mongosh create an implicit session and associate it with the operation.对于未显式与会话关联的操作(即使用Mongo.startSession()),MongoDB驱动程序和mongosh创建一个隐式会话并将其与操作关联。

If a session is idle for longer than 30 minutes, the MongoDB server marks that session as expired and may close it at any time. 如果会话空闲时间超过30分钟,MongoDB服务器会将该会话标记为已过期,并可随时将其关闭。When the MongoDB server closes the session, it also kills any in-progress operations and open cursors associated with the session. 当MongoDB服务器关闭会话时,它还会终止与会话相关联的任何正在进行的操作和打开的游标。This includes cursors configured with noCursorTimeout() or a maxTimeMS() greater than 30 minutes.这包括配置了noCursorTimeout()或大于30分钟的maxTimeMS()的游标。

For operations that return a cursor, if the cursor may be idle for longer than 30 minutes, issue the operation within an explicit session using Mongo.startSession() and periodically refresh the session using the refreshSessions command. 对于返回游标的操作,如果游标空闲时间可能超过30分钟,请使用Mongo.startSession()在显式会话中发出操作,并使用refreshSessions命令定期刷新会话。See Session Idle Timeout for more information.有关详细信息,请参阅会话空闲超时

Transactions事务

aggregate can be used inside multi-document transactions.可以在多文档事务中使用。

However, the following stages are not allowed within transactions:但是,以下阶段不允许在事务中进行:

You also cannot specify the explain option.您也不能指定explain选项。

  • For cursors created outside of a transaction, you cannot call getMore inside the transaction.对于在事务外部创建的游标,不能在事务内部调用getMore
  • For cursors created in a transaction, you cannot call getMore outside the transaction.对于在事务中创建的游标,不能在事务外部调用getMore
Important重要

In most cases, multi-document transaction incurs a greater performance cost over single document writes, and the availability of multi-document transactions should not be a replacement for effective schema design. 在大多数情况下,与单文档写入相比,多文档事务会带来更大的性能成本,并且多文档事务的可用性不应取代有效的模式设计。For many scenarios, the denormalized data model (embedded documents and arrays) will continue to be optimal for your data and use cases. 对于许多场景,非规范化的数据模型(嵌入式文档和数组)将继续是您的数据和用例的最佳选择。That is, for many scenarios, modeling your data appropriately will minimize the need for multi-document transactions.也就是说,对于许多场景,适当地建模数据将最小化多文档事务的需要。

For additional transactions usage considerations (such as runtime limit and oplog size limit), see also Production Considerations.有关其他事务使用注意事项(如运行时限制和oplog大小限制),请参阅生产注意事项

Client Disconnection客户端断开连接

For aggregate operation that do not include the $out or $merge stages:对于不包括$out$merge阶段的aggregate操作:

Starting in MongoDB 4.2, if the client that issued the aggregate disconnects before the operation completes, MongoDB marks the aggregate for termination (i.e. killOp on the operation).从MongoDB 4.2开始,如果发出aggregate的客户端在操作完成之前断开连接,MongoDB会将aggregate标记为终止(即操作上的killOp)。

Stable API稳定的API

When using Stable API V1:使用稳定API V1时:

Example示例

MongoDB 3.6 removes the use of aggregate command without the cursor option unless the command includes the explain option. MongoDB 3.6删除了不带cursor选项的aggregate命令,除非该命令包含解释选项。Unless you include the explain option, you must specify the cursor option.除非包含explain选项,否则必须指定游标选项。

  • To indicate a cursor with the default batch size, specify cursor: {}.要使用默认批处理大小指示游标,请指定cursor: {}
  • To indicate a cursor with a non-default batch size, use cursor: {batchSize: <num> }.要使用非默认批次大小指示游标,请使用cursor: {batchSize: <num> }

Rather than run the aggregate command directly, most users should use the db.collection.aggregate() helper provided in mongosh or the equivalent helper in their driver. 大多数用户应该使用mongosh中提供的db.collection.aggregate()助手或其驱动程序中的等效助手,而不是直接运行aggregate命令。In 2.6 and later, the db.collection.aggregate() helper always returns a cursor.在2.6及更高版本中,db.collection.aggregate()助手总是返回一个游标。

Except for the first two examples which demonstrate the command syntax, the examples in this page use the db.collection.aggregate() helper.除了演示命令语法的前两个示例外,本页中的示例使用db.collection.aggregate()帮助程序。

Aggregate Data with Multi-Stage Pipeline使用多级管道聚合数据

A collection articles contains documents such as the following:集合articles包含以下文档:

{
   _id: ObjectId("52769ea0f3dc6ead47c9a1b2"),
   author: "abc123",
   title: "zzz",
   tags: [ "programming", "database", "mongodb" ]
}

The following example performs an aggregate operation on the articles collection to calculate the count of each distinct element in the tags array that appears in the collection.以下示例对articles集合执行aggregate操作,以计算出现在集合中的tags数组中的每个不同元素的计数。

db.runCommand( {
   aggregate: "articles",
   pipeline: [
      { $project: { tags: 1 } },
      { $unwind: "$tags" },
      { $group: { _id: "$tags", count: { $sum : 1 } } }
   ],
   cursor: { }
} )

In mongosh, this operation can use the db.collection.aggregate() helper as in the following:mongosh中,此操作可以使用db.collection.aggregate()助手,如下所示:

db.articles.aggregate( [
   { $project: { tags: 1 } },
   { $unwind: "$tags" },
   { $group: { _id: "$tags", count: { $sum : 1 } } }
] )

Use $currentOp on an Admin Database在管理数据库上使用$currentOp

The following example runs a pipeline with two stages on the admin database. 以下示例在管理数据库上运行具有两个阶段的管道。The first stage runs the $currentOp operation and the second stage filters the results of that operation.第一阶段运行$currentOp操作,第二阶段筛选该操作的结果。

db.adminCommand( {
   aggregate : 1,
   pipeline : [ {
      $currentOp : { allUsers : true, idleConnections : true } }, {
      $match : { shard : "shard01" }
      }
   ],
   cursor : { }
} )
Note注意

The aggregate command does not specify a collection and instead takes the form {aggregate: 1}. aggregate命令不指定集合,而是采用{aggregate:1}的形式。This is because the initial $currentOp stage does not draw input from a collection. 这是因为初始$currentOp阶段不从集合中提取输入。It produces its own data that the rest of the pipeline uses.它生成其他管道使用的自己的数据。

The new db.aggregate() helper has been added to assist in running collectionless aggregations such as this. 添加了新的db.aggregate()帮助程序,以帮助运行此类无集合聚合。The above aggregation could also be run like this example.上面的聚合也可以像这个示例一样运行。

Return Information on the Aggregation Operation返回聚合操作的信息

The following aggregation operation sets the optional field explain to true to return information about the aggregation operation.以下聚合操作将可选字段explain设置为true,以返回有关聚合操作的信息。

db.orders.aggregate([
      { $match: { status: "A" } },
      { $group: { _id: "$cust_id", total: { $sum: "$amount" } } },
      { $sort: { total: -1 } }
   ],
   { explain: true }
)
Note注意
The explain output is subject to change between releases.解释输出可能会在不同版本之间发生变化。
Tip提示
See also: 参阅:

Aggregate Data using External Sort使用外部排序聚合数据

Each individual pipeline stage has a limit of 100 megabytes of RAM. 每个管道级的RAM限制为100 MBBy default, if a stage exceeds this limit, MongoDB produces an error. 默认情况下,如果阶段超过此限制,MongoDB将生成错误。To allow pipeline processing to take up more space, set the allowDiskUse option to true to enable writing data to temporary files, as in the following example:要允许管道处理占用更多空间,请将allowDiskUse选项设置为true,以允许将数据写入临时文件,如下例所示:

db.stocks.aggregate( [
      { $sort : { cusip : 1, date: 1 } }
   ],
   { allowDiskUse: true }
)

Starting in MongoDB 4.2, the profiler log messages and diagnostic log messages includes a usedDisk indicator if any aggregation stage wrote data to temporary files due to memory restrictions.从MongoDB 4.2开始,如果任何聚合阶段由于内存限制将数据写入临时文件,探查器日志消息诊断日志消息都包含usedDisk指示符。

Aggregate Data Specifying Batch Size指定批次大小的聚合数据

To specify an initial batch size, specify the batchSize in the cursor field, as in the following example:要指定初始批次大小,请在cursor字段中指定batchSize,如下例所示:

db.orders.aggregate( [
      { $match: { status: "A" } },
      { $group: { _id: "$cust_id", total: { $sum: "$amount" } } },
      { $sort: { total: -1 } },
      { $limit: 2 }
   ],
   { cursor: { batchSize: 0 } }
)

The {batchSize: 0 } document specifies the size of the initialbatch size only. {batchSize:0}文档仅指定初始批大小的大小。Specify subsequent batch sizes to OP_GET_MORE operations as with other MongoDB cursors. 与其他MongoDB游标一样,为OP_GET_MORE操作指定后续批次大小。A batchSize of 0 means an empty first batch and is useful if you want to quickly get back a cursor or failure message, without doing significant server-side work.batchSize0表示第一批为空,如果您想快速返回游标或失败消息,而不需要做大量的服务器端工作,那么它非常有用。

Specify a Collation指定排序规则

Collation排序规则 allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.允许用户为字符串比较指定特定于语言的规则,例如字母大小写和重音标记的规则。

A collection myColl has the following documents:集合myColl包含以下文档:

{ _id: 1, category: "café", status: "A" }
{ _id: 2, category: "cafe", status: "a" }
{ _id: 3, category: "cafE", status: "a" }

The following aggregation operation includes the Collation option:以下聚合操作包括排序规则选项:

db.myColl.aggregate(
   [ { $match: { status: "A" } }, { $group: { _id: "$category", count: { $sum: 1 } } } ],
   { collation: { locale: "fr", strength: 1 } }
);

For descriptions on the collation fields, see Collation Document.有关排序字段的描述,请参阅排序文档

Hint an Index提示索引

Create a collection foodColl with the following documents:使用以下文档创建集合foodColl

db.foodColl.insertMany( [
   { _id: 1, category: "cake", type: "chocolate", qty: 10 },
   { _id: 2, category: "cake", type: "ice cream", qty: 25 },
   { _id: 3, category: "pie", type: "boston cream", qty: 20 },
   { _id: 4, category: "pie", type: "blueberry", qty: 15 }
] )

Create the following indexes:创建以下索引:

db.foodColl.createIndex( { qty: 1, type: 1 } );
db.foodColl.createIndex( { qty: 1, category: 1 } );

The following aggregation operation includes the hint option to force the usage of the specified index:以下聚合操作包含用于强制使用指定索引的hint选项:

db.foodColl.aggregate(
   [ { $sort: { qty: 1 }}, { $match: { category: "cake", qty: 10  } }, { $sort: { type: -1 } } ],
   { hint: { qty: 1, category: 1 } }
)

Override Default Read Concern覆盖默认读取问题

To override the default read concern level, use the readConcern option. 要覆盖默认的读取关注级别,请使用readConcern选项。The getMore command uses the readConcern level specified in the originating aggregate command.getMore命令使用原始aggregate命令中指定的readConcern级别。

You cannot use the $out or the $merge stage in conjunction with read concern "linearizable". 您不能将$out$merge阶段与读取关注点"linearizable"结合使用。That is, if you specify "linearizable" read concern for db.collection.aggregate(), you cannot include either stages in the pipeline.也就是说,如果为db.collection.aggregate()指定"linearizable"读取关注点,则不能在管道中包含这两个阶段。

The following operation on a replica set specifies a read concern of "majority" to read the most recent copy of the data confirmed as having been written to a majority of the nodes.以下对副本集的操作将读取关注指定为"majority",以读取确认已写入大多数节点的数据的最新副本。

Important重要
  • Starting in MongoDB 4.2, you can specify read concern level "majority" for an aggregation that includes an $out stage.从MongoDB4.2开始,您可以为包含$out阶段的聚合指定读取关注级别"majority"In MongoDB 4.0 and earlier, you cannot include the $out stage to use "majority" read concern for the aggregation.在MongoDB 4.0及更早版本中,不能包含$out阶段来使用聚合的"majority"读取关注点。
  • Regardless of the read concern level, the most recent data on a node may not reflect the most recent version of the data in the system.无论读取关注级别如何,节点上的最新数据可能不会反映系统中数据的最新版本。
db.restaurants.aggregate(
   [ { $match: { rating: { $lt: 5 } } } ],
   { readConcern: { level: "majority" } }
)

To ensure that a single thread can read its own writes, use "majority" read concern and "majority" write concern against the primary of the replica set.要确保单个线程可以读取自己的写入,请对副本集的主线程使用"majority"读取关注点和"majority"写入关注点。

Use Variables in letlet中使用变量

New in version 5.0.在版本5.0中新增

To define variables that you can access elsewhere in the command, use the let option.要定义可以在命令中其他位置访问的变量,请使用let选项。

Note注意

To filter results using a variable in a pipeline $match stage, you must access the variable within the $expr operator.要使用管道$match阶段中的变量筛选结果,必须在$expr运算符中访问该变量。

Create a collection cakeSales containing sales for cake flavors:创建包含蛋糕口味销售的集合cakeSales

db.cakeSales.insertMany( [
   { _id: 1, flavor: "chocolate", salesTotal: 1580 },
   { _id: 2, flavor: "strawberry", salesTotal: 4350 },
   { _id: 3, flavor: "cherry", salesTotal: 2150 }
] )

The following example:以下示例:

  • retrieves the cake that has a salesTotal greater than 3000, which is the cake with an _id of 2检索salesTotal大于3000的蛋糕,即_id为2的蛋糕
  • defines a targetTotal variable in let, which is referenced in $gt as $$targetTotallet中定义targetTotal变量,该变量在$gt中被引用为$$targetToll
db.runCommand( {
   aggregate: db.cakeSales.getName(),
   pipeline: [
      { $match: {
           $expr: { $gt: [ "$salesTotal", "$$targetTotal" ] }
      } },
    ],
    cursor: {},
    let: { targetTotal: 3000 }
} )
Tip提示
See also: 参阅:
←  Aggregation Commandscount →