TicksToDateTime (NoSQL query)

APPLIES TO: NoSQL

Converts the specified number of ticks to a date and time value.

Syntax

TicksToDateTime(<numeric_expr>)

Arguments

Description
numeric_expr A numeric expression.

Note

For more information on the ISO 8601 format, see ISO 8601.

Return types

Returns a UTC date and time string in the ISO 8601 format YYYY-MM-DDThh:mm:ss.fffffffZ.

Examples

The following example converts the ticks to a date and time value.

SELECT VALUE {
    parseTicks: TicksToDateTime(15973607943002652),
    parseUnixEpoch: TicksToDateTime(0),
    parseWindowsEpoch: TicksToDateTime(-116444736000000000)
}
[
  {
    "parseTicks": "2020-08-13T23:19:54.3002652Z",
    "parseUnixEpoch": "1970-01-01T00:00:00.0000000Z",
    "parseWindowsEpoch": "1601-01-01T00:00:00.0000000Z"
  }
]

Remarks

  • This function returns undefined if the ticks value specified is invalid.