$minute (aggregation)

On this page本页内容

Definition定义

$minute

Returns the minute portion of a date as a number between 0 and 59.以0到59之间的数字形式返回日期的分钟部分。

The $minute expression has the following operator expression syntax:$minute表达式具有以下运算符表达式语法

{ $minute: <dateExpression> }

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

The argument must be a valid expression that resolves to one of the following:参数必须是解析为以下之一的有效表达式

  • A Date, a Timestamp, or an ObjectID.日期时间戳ObjectID
  • A document of the following form:以下形式的文件:

    New in version 3.6.版本3.6中的新功能。

    { date: <dateExpression>, timezone: <tzExpression> }
    Field字段Description描述
    date The date to which the operator is applied. 应用运算符的日期。<dateExpression> must be a valid expression that resolves to a Date, a Timestamp, or an ObjectID.
    timezone

    Optional. 可选。The timezone of the operation result. <tzExpression> must be a valid expression that resolves to a string formatted as either an Olson Timezone Identifier or a UTC Offset. If no timezone is provided, the result is displayed in UTC.

    FormatExamples
    Olson Timezone Identifier奥尔森时区标识符
    "America/New_York"
    "Europe/London"
    "GMT"
    UTC Offset
    +/-[hh]:[mm], e.g. "+04:45"
    +/-[hh][mm], e.g. "-0530"
    +/-[hh], e.g. "+03"

Behavior行为

Example示例Result
{ $minute: new Date("2016-01-01T12:01:00Z") }
1
{ $minute: { date: new Date("Jan 7, 2003") } }
0
{ $minute: {
    date: new Date("2016-01-01T12:01:00Z"),
    timezone: "Canada/Newfoundland"
} }
31
{ $minute: {
    date: ISODate("1998-11-07T00:40:00Z"),
    timezone: "+0530"
} }
10
{ $minute: "March 28, 1976" }
error
{ $minute: Date("2016-01-01") }
error
{ $minute: "2009-04-09" }
error

Note

$minute cannot take a string as an argument.不能将字符串作为参数。

Example示例

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

{
  "_id" : 1,
  "item" : "abc",
  "price" : 10,
  "quantity" : 2,
  "date" : ISODate("2014-01-01T08:15:39.736Z")
}

The following aggregation uses the $minute and other date expressions to break down the date field:以下聚合使用$minute和其他日期表达式来分解date字段:

db.sales.aggregate(
   [
     {
       $project:
         {
           year: { $year: "$date" },
           month: { $month: "$date" },
           day: { $dayOfMonth: "$date" },
           hour: { $hour: "$date" },
minutes: { $minute: "$date" },           seconds: { $second: "$date" },
           milliseconds: { $millisecond: "$date" },
           dayOfYear: { $dayOfYear: "$date" },
           dayOfWeek: { $dayOfWeek: "$date" },
           week: { $week: "$date" }
         }
     }
   ]
)

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

{
  "_id" : 1,
  "year" : 2014,
  "month" : 1,
  "day" : 1,
  "hour" : 8,
  "minutes" : 15,
  "seconds" : 39,
  "milliseconds" : 736,
  "dayOfYear" : 1,
  "dayOfWeek" : 4,
  "week" : 0
}