On this page本页内容
$second
Returns the second portion of a date as a number between 0 and 59, but can be 60 to account for leap seconds.以0到59之间的数字返回日期的第二部分,但可以是60来表示闰秒。
The $second expression has the following operator expression syntax:$second表达式具有以下运算符表达式语法:
{ $second: <dateExpression> }
The argument can be:参数可以是:
A document with this format:具有以下格式的文档:
{ date: <dateExpression>, timezone: <tzExpression> }
date | <dateExpression> | ||||||
timezone |
|
{ $second: new Date("2012-11-06T00:14:20") }
| 20 |
{ $second: { date: new Date("Jan 7, 2003") } }
| 0 |
{ $second: {
date: new Date("August 14, 2011"),
timezone: "America/Chicago"
} }
| 0 |
{ $second: ISODate("1998-11-07T00:00:42Z") }
| 42 |
{ $second: {
date: ISODate("1998-11-07T00:00:09Z"),
timezone: "+0530"
} }
| 9 |
{ $second: "March 28, 1976" }
| error |
{ $second: Date("2016-01-01") }
| error |
{ $second: "2009-04-09" }
| error |
$second不能将字符串作为参数。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 以下聚合使用$second and other date expressions to break down the date field:$second和其他日期表达式分解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
}