目的
转换时间戳为指定格式的时间
案例
两个参数,一个是时间戳,单位是秒! 不是ms,另一个是需要输出的格式
select from_unixtime(1567896035000,'HH');
04
假设我们有一个是ms,那么就需要/1000
select from_unixtime(1567896035000/1000);
报错,因为必须是int类型
org.apache.hadoop.hive.ql.exec.NoMatchingMethodException:No matching method for class org.apache.hadoop.hive.ql.udf.UDFFromUnixTime with (double). Possible choices: _FUNC_(bigint) _FUNC_(bigint, string) _FUNC_(int) _FUNC_(int, string)
如下ok
select from_unixtime(cast(1567896035000/1000 as int));
结果如下,第二个参数可以省略,省略了默认就是下面这种格式
2019-09-08 06:40:35
当然,可以自己指定其他格式
select from_unixtime(cast(1567896035000/1000 as int),'yyyy-MM-dd');
2019-09-08
select from_unixtime(cast(1567896035000/1000 as int),'yyyy-MM-dd HH:mm:ss');
2019-09-08 06:40:35
单独获取分钟
select from_unixtime(cast(1567896035000/1000 as int),'mm');
结果
40
总结
- Hive
from_unixtime
可以方便的从时间戳转时间 - 第二个参数可以省略
- 第一个参数的单位是
s
,不是ms