在hive sql里怎么把"2020-10-26T08:41:19.000Z"这个字符串转换成年月日

2020-12-03 14:50发布

问题:

在hive sql里怎么把"2020-10-26T08:41:19.000Z"这个字符串转换成年月日时分秒?

回答1:

SELECT from_unixtime(unix_timestamp(你的字段));
具体参考:https://www.cnblogs.com/littlewu/p/9364273.html



回答2:

hive sql的常用日期处理函数总结



标签: hive sql