$month(集計)
定義
$month
日付の月を1から12までの数値で返します。
{ $month: <dateExpression> } 引数は次のとおりです。
次の形式のドキュメント:
{ date: <dateExpression>, timezone: <tzExpression> } フィールド説明date
timezone
任意。 操作結果のタイムゾーン。
<tzExpression>
は、有効な式であり、string Olson タイムゾーン識別子 または UTC オフセット のいずれかとして形式された文字列に変換される必要があります。timezone
が指定されていない場合、結果は UTC になります。形式例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"
動作
例 | 結果 | ||||
---|---|---|---|---|---|
| 1 | ||||
| 11 | ||||
| 1 | ||||
| 8 | ||||
| 12 | ||||
| error | ||||
| error | ||||
| error |
注意
$month は引数として文字列を取ることができません。
例
次の文書を持つsales
コレクションを考えます。
db.sales.insertOne( { "_id" : 1, "item" : "abc", "price" : 10, "quantity" : 2, "date" : ISODate("2014-01-01T08:15:39.736Z") } )
次の集計では、 $month
やその他の日付演算子を使用して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" } } } ] )
この操作では、次の結果を返します。
{ "_id" : 1, "year" : 2014, "month" : 1, "day" : 1, "hour" : 8, "minutes" : 15, "seconds" : 39, "milliseconds" : 736, "dayOfYear" : 1, "dayOfWeek" : 4, "week" : 0 }