unixtime_nanoseconds_todatetime()
Converts unix-epoch nanoseconds to UTC datetime.
Syntax
unixtime_nanoseconds_todatetime(*nanoseconds*)
Arguments
- nanoseconds: A real number represents epoch timestamp in nanoseconds.
Datetimethat occurs before the epoch time (1970-01-01 00:00:00) has a negative timestamp value.
Returns
If the conversion is successful, the result will be a datetime value. If conversion is not successful, result will be null.
See also
- Convert unix-epoch seconds to UTC datetime using unixtime_seconds_todatetime().
- Convert unix-epoch milliseconds to UTC datetime using unixtime_milliseconds_todatetime().
- Convert unix-epoch microseconds to UTC datetime using unixtime_microseconds_todatetime().
Example
print date_time = unixtime_nanoseconds_todatetime(1546300800000000000)
| date_time |
|---|
| 2019-01-01 00:00:00.0000000 |