$first (aggregation accumulator)

On this page本页内容

Definition定义

$first

Returns the value that results from applying an expression to the first document in a group of documents that share the same group by key. 返回将表达式应用于按键共享同一组文档中的第一个文档所产生的值。Only meaningful when documents are in a defined order.仅当文档按定义的顺序排列时才有意义。

$first is only available in the $group stage.$first仅在$group阶段可用。

Disambiguation消除歧义

The following page describes the accumulator $first, available only within the $group stage. 下页介绍了累加器$first,它仅在$group阶段中可用。For the array operator $first, refer to the $first (array operator) instead.对于数组运算符$first,请参考$first(数组运算符)

Syntax语法

$first has the following syntax:语法如下所示:

{ $first: <expression> }

For more information on expressions, see Expressions.有关表达式的详细信息,请参阅表达式

Behavior行为

When using $first in a $group stage, the $group stage should follow a $sort stage to have the input documents in a defined order.$group阶段中使用$first时,$group阶段应该在$sort阶段之后,以使输入文档按定义的顺序排列。

Note

Although the $sort stage passes ordered documents as input to the $group stage, $group is not guaranteed to maintain this sort order in its own output.尽管$sort阶段将已排序的文档作为输入传递给$group阶段,但$group不保证在其自身的输出中保持这种排序顺序。

Example示例

Consider a sales collection with the following documents:考虑一个sales集合带有以下文档:

{ "_id" : 1, "item" : "abc", "price" : 10, "quantity" : 2, "date" : ISODate("2014-01-01T08:00:00Z") }
{ "_id" : 2, "item" : "jkl", "price" : 20, "quantity" : 1, "date" : ISODate("2014-02-03T09:00:00Z") }
{ "_id" : 3, "item" : "xyz", "price" : 5, "quantity" : 5, "date" : ISODate("2014-02-03T09:05:00Z") }
{ "_id" : 4, "item" : "abc", "price" : 10, "quantity" : 10, "date" : ISODate("2014-02-15T08:00:00Z") }
{ "_id" : 5, "item" : "xyz", "price" : 5, "quantity" : 10, "date" : ISODate("2014-02-15T09:05:00Z") }
{ "_id" : 6, "item" : "xyz", "price" : 5, "quantity" : 5, "date" : ISODate("2014-02-15T12:05:10Z") }
{ "_id" : 7, "item" : "xyz", "price" : 5, "quantity" : 10, "date" : ISODate("2014-02-15T14:12:12Z") }

Grouping the documents by the item field, the following operation uses the $first accumulator to compute the first sales date for each item:按照item字段对文档进行分组,以下操作使用$first累加器计算每个物料的第一个销售日期:

db.sales.aggregate(
   [
     { $sort: { item: 1, date: 1 } },
     {
       $group:
         {
           _id: "$item",
           firstSalesDate: { $first: "$date" }
         }
     }
   ]
)

The operation returns the following results:操作返回以下结果:

{ "_id" : "xyz", "firstSalesDate" : ISODate("2014-02-03T09:05:00Z") }
{ "_id" : "jkl", "firstSalesDate" : ISODate("2014-02-03T09:00:00Z") }
{ "_id" : "abc", "firstSalesDate" : ISODate("2014-01-01T08:00:00Z") }