정의
$dayOfMonth날짜의 월 요일을 1에서 31 사이의 숫자로 반환합니다.
The
$dayOfMonthexpression has the following operator expression syntax:{ $dayOfMonth: <dateExpression> } 인수는 다음과 같습니다:
이 형식의 문서입니다:
{ date: <dateExpression>, timezone: <tzExpression> } 필드설명datetimezoneOptional. 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 notimezoneis provided, the result is in 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 | ||||
| 7 | ||||
| 14 | ||||
| 7 | ||||
| 6 | ||||
|
| ||||
|
| ||||
|
|
참고
$dayOfMonth는 문자열을 인수로 사용할 수 없습니다.
예시
다음 문서가 포함된 collection을 고려합니다:sales
db.sales.insertOne( { "_id" : 1, "item" : "abc", "price" : 10, "quantity" : 2, "date" : ISODate("2014-01-01T08:15:39.736Z") } )
The following aggregation uses the $dayOfMonth and other date operators to break down the date field:
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 }