$hour (aggregation)

On this page本页内容

Definition定义

$hour

Returns the hour portion of a date as a number between 0 and 23.以0到23之间的数字返回日期的小时部分。

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

{ $hour: <dateExpression> }

The argument can be:参数可以是:

  • An expression that resolves to a Date, a Timestamp, or an ObjectID.解析为DateTimestampObjectID表达式
  • A document with this format:具有以下格式的文档:

    { date: <dateExpression>, timezone: <tzExpression> }
    Field字段Description描述
    dateThe date to which the operator is applied. 运算符的应用日期。<dateExpression> must be a valid expression that resolves to a Date, a Timestamp, or an ObjectID.必须是解析为DateTimestampObjectID的有效表达式
    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. 必须是有效的表达式,该表达式可以解析为格式为Olson时区标识符UTC偏移量的字符串。If no timezone is provided, the result is displayed in UTC.如果未提供timezone,则结果以UTC显示。

    Format格式Examples示例
    Olson Timezone Identifier奥尔森时区标识符
    "America/New_York"
    "Europe/London"
    "GMT"
    UTC OffsetUTC偏移量
    +/-[hh]:[mm], e.g. "+04:45"
    +/-[hh][mm], e.g. "-0530"
    +/-[hh], e.g. "+03"

Behavior行为

Example示例Result结果
{ $hour: new Date("2016-01-01T12:00:00Z") }
12
{ $hour: { date: new Date("Jan 7, 2003Z") } }
0
{ $hour: {
    date: new Date("August 14, 2011Z"),
    timezone: "America/Chicago"
} }
18
{ $hour: ISODate("2017-10-19T00:00:00Z") }
0
{ $hour: {
    date: ISODate("2017-10-19T00:00:00Z"),
    timezone: "+0530"
} }
5
{ $hour: "March 28, 1976" }
error
{ $hour: Date("2016-01-01") }
error
{ $hour: "2009-04-09" }
error
Note注意
$hour cannot take a string as an argument.$hour不能将字符串作为参数。

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 $hour and other date expressions to break down the date field:以下聚合使用$hour和其他日期表达式分解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" }
         }
     }
   ]
)

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
}
←  $gte (aggregation)$ifNull (aggregation) →