0

我正在通过 JSON 提取时区,它的格式为 2021-08-02T02:11:07.299+0000。我想将时间戳转换为雪花 sql 中没有“T”的时间戳。任何人都可以请帮忙。

4

1 回答 1

0

使用 to_timestamp-function 并指定数据的格式,中间有 T:

    select to_timestamp('2021-08-02T02:11:07.299+0000','YYYY-MM-DDTHH24:MI:SS.FF3+TZHTZM');

参考文档:

https://docs.snowflake.com/en/sql-reference/functions/to_timestamp.html https://docs.snowflake.com/en/sql-reference/functions-conversion.html#date-and-time-formats -in-conversion-functions

于 2021-09-15T11:51:14.573 回答