配置单元查询返回3年内每个月的最后日期

rseugnpd  于 2021-06-26  发布在  Hive
关注(0)|答案(1)|浏览(307)

请提供配置单元查询以返回中每个月的最后日期 'yyyy-mm-dd' 格式为3年。

rggaifut

rggaifut1#

用你的开始日期和结束日期替换本例中的开始日期和结束日期。工作原理: space 函数生成长度为返回天数的空格字符串 datediff() 函数,按空格拆分创建数组,posexplode分解数组,返回数组中元素的位置,该位置对应于天数。然后加上日期${hivevar:start_date},s.i)返回每天的日期, lest_day() 函数(自1.1版起存在于配置单元中)将每个日期转换为最后一天(需要 distinct 这里)。运行以下示例:

set hivevar:start_date=2015-07-01;
set hivevar:end_date=current_date;

select distinct last_day(date_add ('${hivevar:start_date}',s.i)) as last_date 
  from ( select posexplode(split(space(datediff(${hivevar:end_date},'${hivevar:start_date}')),' ')) as (i,x)
        ) s
order by last_date
;

输出:

OK
2015-07-31
2015-08-31
2015-09-30
2015-10-31
2015-11-30
2015-12-31
2016-01-31
2016-02-29
2016-03-31
2016-04-30
2016-05-31
2016-06-30
2016-07-31
2016-08-31
2016-09-30
2016-10-31
2016-11-30
2016-12-31
2017-01-31
2017-02-28
2017-03-31
2017-04-30
2017-05-31
2017-06-30
2017-07-31
2017-08-31
2017-09-30
2017-10-31
2017-11-30
2017-12-31
2018-01-31
2018-02-28
2018-03-31
2018-04-30
2018-05-31
2018-06-30
2018-07-31
Time taken: 71.581 seconds, Fetched: 37 row(s)

相关问题