我必须恢复一个日期转换,在开始的时候,它是
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') "无法使用。
'yyyMMdd'T'hhmmss'
xpcnnkqh1#
使用date_format函数。
date_format
select current_timestamp, date_format(current_timestamp,"yyyyMMdd'T'HHmmss") as result;
返回
2020-10-09 15:03:36.584 20201009T150336
点击这里阅读格式:simpledateformat。
1条答案
按热度按时间xpcnnkqh1#
使用
date_format
函数。返回
点击这里阅读格式:simpledateformat。