标签: hive hiveql hql-hive
在一个列的Hive表值中就像是01/12 / 17.但是我需要格式为12-2017(月 - 年)的值。如何转换它?
答案 0 :(得分:1)
将字符串转换为unix_timestamp并使用from_unixtime输出所需的格式。
unix_timestamp
from_unixtime
select from_unixtime(unix_timestamp(col_name,'MM/dd/yy'),'MM-yyyy')