gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 14:46:24 24 4
gpt4 key购买 nike

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

最佳答案

使用 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

关于hadoop - 如何在 HIVE 中将日期 2017-sep-12 转换为 2017-09-12,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47301455/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com