尔尔辞挽

导航

2022年12月22日 #

HIVE如何获取当前日期的前两个工作日及后三个工作日

摘要: 1 create temporary table if not exists tmp as 2 select 3 cur_date, 4 if_workday, 5 sum(if_workday) over (order by cur_date asc) lg 6 FROM 7 ( 8 select 阅读全文

posted @ 2022-12-22 14:18 尔尔辞挽 阅读(354) 评论(0) 推荐(0)

时间维表的建立

摘要: -- 建表create table if not exists crisps_dim.dim_com_date_info ( cur_date date comment '自然日期', yes_date string comment '昨日', tom_date string comment '明日 阅读全文

posted @ 2022-12-22 14:01 尔尔辞挽 阅读(73) 评论(0) 推荐(0)