Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
APPLIES TO:
NoSQL
Returns the value of the month for the provided date and time.
Syntax
MONTH(<date_time>)
Arguments
| Description | |
|---|---|
date_time |
A date/time value. |
Return types
Returns a numeric value that is a positive integer.
Examples
The following example shows the results of using this function on different date values.
SELECT VALUE {
"case1": MONTH("2024-01-10"),
"case2": MONTH("2000-12-12T10:00:00"),
"case3": MONTH("1989-03-03T12:12:12.1234567Z")
}
[
{
"case1": 1,
"case2": 12,
"case3": 3
}
]
Remarks
- This function behaves the same as the DateTimePart function when the month is specified.
- This function benefits from the use of a range index.