0


hive函数 next_day

hive函数-next_day

next_day 下周几

next_day (date,char) 取当前天的下一个周一

例子 select next_day(‘2021-12-30’,‘MO’);-- 2022-01-03

下周一

next_day(‘2020-06-14’, ‘mon’)

本周一

date_sub(next_day(‘2020-06-14’, ‘mon’),7)

上周一

date_sub(next_day(‘2020-06-14’, ‘mon’),14)

上周日

date_sub(next_day(‘2020-06-14’, ‘mon’),8)

上周时间段

between date_sub(next_day(‘2020-06-14’, ‘mon’),14) and date_sub(next_day(‘2020-06-14’, ‘mon’),8)
标签: sql hive

本文转载自: https://blog.csdn.net/m0_66488648/article/details/122556969
版权归原作者 灯泡厂一支花 所有, 如有侵权,请联系我们删除。

“hive函数 next_day”的评论:

还没有评论