hive 3.0.0希望将时间戳转换为字符串

hpcdzsge  于 2021-04-03  发布在  Hive
关注(0)|答案(1)|浏览(494)

我必须恢复一个日期转换,在开始的时候,它是

CAST(FROM_UNIXTIME(UNIX_TIMESTAMP(t0.date_creation , 'yyyyMMdd'T'hhmmss')) AS TIMESTAMP)

现在我正在寻找如何将时间戳转换为'yyyMMdd'T'hhmmss'的格式。
"CAST(date_creation as string format 'yyyy-MM-dd hh:mm:ss') "无法使用。

xpcnnkqh

xpcnnkqh1#

使用date_format函数。

select current_timestamp, date_format(current_timestamp,"yyyyMMdd'T'HHmmss") as result;

返回

2020-10-09 15:03:36.584       20201009T150336

点击这里阅读格式:simpledateformat。

相关问题