unixtime_microseconds_todatetime()
将 unix-epoch 微秒转换为 UTC 日期/时间。
语法
unixtime_microseconds_todatetime(
microseconds)
详细了解语法约定。
参数
客户 | 类型 | 必需 | 说明 |
---|---|---|---|
微秒 | real |
✔️ | 以微秒为单位的纪元时间戳。 在纪元时间 (1970-01-01 00:00:00) 之前出现的 datetime 值的时间戳值为负。 |
返回
如果转换成功,则结果将为日期/时间值。 否则,结果为 null。
示例
print date_time = unixtime_microseconds_todatetime(1546300800000000)
输出
date_time |
---|
2019-01-01 00:00:00.0000000 |
相关内容
- 使用 unixtime_seconds_todatetime() 将 unix-epoch 秒转换为 UTC 日期/时间。
- 使用 unixtime_milliseconds_todatetime() 将 unix-epoch 毫秒转换为 UTC 日期/时间。
- 使用 unixtime_nanoseconds_todatetime() 将 unix-epoch 纳秒转换为 UTC 日期/时间。