hive中如何把unixtimestamp转成小时分钟
时间: 2023-02-11 07:03:30 浏览: 94
HIVE多行转多列 和 多列转多行
5星 · 资源好评率100%
在Hive中,可以使用内置函数from_unixtime将unixtimestamp转换成datetime类型,再使用date_format函数将datetime类型格式化成小时分钟的形式。
具体语句为:
```
select date_format(from_unixtime(unix_timestamp),'HH:mm') as hour_minute from table;
```
这样就可以将unix_timestamp字段转换成小时分钟的形式并命名为hour_minute字段。
阅读全文