gpt4 book ai didi

datetime - hive 中需要 "MMM-yyyy"格式的时间戳

转载 作者:可可西里 更新时间:2023-11-01 16:39:06 31 4
gpt4 key购买 nike

你能帮我从 hive 中的 current_date 获取“MMM-yyyy”格式的时间格式吗?

非常感谢。

例如:

col1           col2
12-09-2016 SEP-2016
21-10-2017 OCT-2017

最佳答案

select from_unixtime(unix_timestamp(CURRENT_DATE, 'yyyy-MM-dd HH:mm:ss'),'MMM-yyyy') 
AS currentdate from db.table_name;

例子:

hive> select from_unixtime(unix_timestamp(CURRENT_DATE, 'yyyy-MM-dd HH:mm:ss'),'MMM-yyyy')
> AS currentdate from default.test limit 1;
OK
Jul-2017
Time taken: 0.043 seconds, Fetched: 1 row(s)
hive>

关于datetime - hive 中需要 "MMM-yyyy"格式的时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45387174/

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