8

我的 Hive 表中有以下时间戳的字符串表示形式:

20130502081559999

我需要将其转换为这样的字符串:

2013-05-02 08:15:59

我试过以下({code} >>> {result}):

from_unixtime(unix_timestamp('20130502081559999', 'yyyyMMddHHmmss')) >>> 2013-05-03 00:54:59
from_unixtime(unix_timestamp('20130502081559999', 'yyyyMMddHHmmssMS')) >>> 2013-09-02 08:15:59
from_unixtime(unix_timestamp('20130502081559999', 'yyyyMMddHHmmssMS')) >>> 2013-05-02 08:10:39

转换为时间戳然后 unixtime 似乎很奇怪,这样做的正确方法是什么?

编辑 我想通了。

from_unixtime(unix_timestamp(substr('20130502081559999',1,14), 'yyyyMMddHHmmss')) >>> 2013-05-02 08:15:59

或者

from_unixtime(unix_timestamp('20130502081559999', 'yyyyMMddHHmmssSSS')) >>> 2013-05-02 08:15:59

还是...有更好的方法吗?

4

4 回答 4

9

看起来你的格式有三毫秒数字。我猜想,根据SimpleDateFormat,您需要使用以下内容:

from_unixtime(unix_timestamp('20130502081559999', 'yyyyMMddHHmmssSSS'))

希望有帮助。

于 2013-07-23T08:15:50.280 回答
3

不确定“更好的方式”是什么意思,但您始终可以编写自己的函数来处理日期转换。

于 2013-07-23T10:13:53.780 回答
3

假设你有这样的输入文件

文件:///数据/csv/temptable/temp.csv

1   2015-01-01  
2   2015-10-10 12:00:00.232
3   2016-02-02
4   2015-09-12 23:08:07.124

然后你也可以试试这个方法:

create external table temptable(id string, datetime string) row format delimited fields terminated by '\t' stored as textfile LOCATION 'file:///data/csv/temptable';

create table mytime as select id, from_utc_timestamp(date_format(datetime,'yyyy-MM-dd HH:mm:ss.SSS'),'UTC') as datetime from temptable;
于 2016-04-13T16:35:54.843 回答
0

如果可用,您可以简单地使用以下语法

1) 检查您的配置单元安装中是否有可用的 UDF?

show functions;

2) 如果看到 from_unixtime() 函数,则:

from_unixtime(your_timestamp_field)

这将解决问题!

如果您喜欢我的回答,请添加评论!

于 2019-11-14T02:15:49.647 回答