如何在 HIVE 中将日期 2017-sep-12 转换为 2017-09-12

问题描述 投票:0回答:1

我在转换配置单元中的日期时遇到一个问题。我需要将 2017-sep-12 转换为 2017-09-12 。我怎样才能在 HIVE 中实现这一目标

sql date hadoop hive
1个回答
4
投票

使用

unix_timestamp(string date, string pattern)
将给定的日期格式转换为 1970-01-01 以来经过的秒数。然后使用
from_unixtime()
转换为给定格式:

hive> select from_unixtime(unix_timestamp('2017-sep-12' ,'yyyy-MMM-dd'), 'dd-MM-yyyy');
OK
12-09-2017
© www.soinside.com 2019 - 2024. All rights reserved.