hive 时间函数
程序员文章站
2024-01-29 12:36:58
...
hive 时间函数
20190910
- 时间截断函数
trunc(string date, string format)
返回string
select trunc("2016-06-26","MM") --得到:2016-06-01
select trunc("2016-06-26","YY") --得到:2016-01-01
【注意】
format
所支持的格式为MONTH/MON/MM, YEAR/YYYY/YY
【大写】
-
timestamp
转date
函数to_date(string timestamp)
返回string
select to_date("1970-01-01 00:00:00") --得到:"1970-01-01"
上面都是参考:Hive2.0
函数大全(中文版)
上一篇: php xml 入门学习资料