欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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【大写】

  • timestampdate函数to_date(string timestamp) 返回string
select to_date("1970-01-01 00:00:00") --得到:"1970-01-01"

上面都是参考:Hive2.0函数大全(中文版)

相关标签: hive