presto时间转换、时间加减、时间差Hive中对应的⽇期操作见:
问题1:时间格式转换
例⼦: 当前时间20200110 转化为2020-01-10
--presto
select (format_datetime(date_parse('20200110','%Y%m%d'),'yyyy-MM-dd')
问题2: 时间的加减
例⼦: 原时间为20200110 需先转化为标准⽇期形式再加减
--presto
select date_add('day',-6,cast('2020-07-07' as date)); --第三个参数不转换为date格式, 会报错第三个参数必须为date格式select
date_add('day', -6, cast(format_datetime(date_parse('20200110','%Y%m%d'),'yyyy-MM-dd') as date))
问题3: 时间戳转⽇期
--presto
select from_unixtime(1578585600);
--加格式
select format_datetime(from_unixtime(1578585600),'yyyy-MM-dd')
问题4: ⽇期转时间戳
-- presto
select to_unixtime(cast('2020-01-10' as date));
select to_unixtime(cast(format_datetime(date_parse('20200110','%Y%m%d'),'yyyy-MM-dd') as date))
问题5: 计算两个⽇期之间的diff
--presto
select date_diff('day',cast('2018-09-05' as date),cast('2018-09-07' as date));
-
unix时间戳转换日期格式- 1)需要提供参数'day',表⽰要查询的是天数间隔;要查询⼩时,则提供参数'hour'
-- 2)并且后⾯传参限制为date类型;
-- 3)最后要注意是后⾯减去前⾯ --与hive不同
问题6: 当前时间
-- presto
select now(); --精确到今天的时分秒
select current_date; --精确到今天的年⽉⽇
select current_date - interval '1' day; 精确到昨天的年⽉⽇
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论