hivesql的常⽤⽇期处理函数总结1)date_format函数(根据格式整理⽇期)
  作⽤:把⼀个字符串⽇期格式化为指定的格式。
select date_format('2017-01-01','yyyy-MM-dd HH:mm:ss');  --⽇期字符串必须满⾜yyyy-MM-dd格式
  结果:2017-01-01 00:00:00
2)date_add、date_sub函数(加减⽇期)
  作⽤:把⼀个字符串⽇期格式加⼀天、减⼀天。
select date_add('2019-01-01',1);      --字符串必须满⾜yyyy-MM-dd格式
  结果:2019-01-02
select date_sub('2019-01-01',1);  --字符串必须满⾜yyyy-MM-dd格式
  结果:2018-12-31
3)next_day函数
  作⽤:得到⼀个字符串⽇期的下周⼏的具体⽇期
select next_date('2020-01-01','Fri');    --得到2020-01-01往后的第⼀个周五
  结果:2020-01-03
4)last_day函数(求当⽉最后⼀天⽇期)
  作⽤:求当⽉的最后⼀天⽇期
select last_day('2020-01-01');
  结果:2020-01-31
5)from_unixtime(‘bigint时间戳’,‘pattern’)函数 
5,6在⼀起⽤,常⽤来把⾮yyyy-MM-dd的⽇期字符串转为标准的yyyy-MM-dd的⽇期字符串
  作⽤:把⼀个⼤数字时间戳,转换为指定格式的⽇期字符串
select from_unixtime(1517725479,'yyyy-MM-dd HH:dd:ss');
select from_unixtime(1517725479,'yyyyMMdd');
  结果:2018-02-04 14:04:39
unix时间戳转换日期格式     20180204
6)unix_timestamp('⽇期字符串',‘pattern’)
5,6在⼀起⽤,常⽤来把⾮yyyy-MM-dd的⽇期字符串转为标准的yyyy-MM-dd的⽇期字符串
  作⽤:把指定格式的⽇期转成时间戳select unix_timestamp('2020/01/01','yyyy/MM/dd');
  结果:1577808000
unix_timestamp()
  作⽤:得到当前的时间戳
select unix_timestamp();
  结果:1577858367
7)current_date()
  作⽤:得到当前的⽇期字符串
select current_date();
  结果:2020-01-01
8)current_timestamp()
  作⽤:得到当前的时间字符串
select current_timestamp();
  结果:2020-01-01 13:52:46.018

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。