我有一个iso格式的年份周数,我想在hive中得到这一周的开始日期。例如:2020年第50周 - 开始日期应该是2020-12-07。
rur96b6h1#
试试下面的代码,其中 "年 "和 "周 "是你的表的相应列名。
select date( from_unixtime( unix_timestamp(concat(year,'-',week,'-','1'), 'yyyy-w-u') ) ) from <your_table_name>;
1条答案
按热度按时间rur96b6h1#
试试下面的代码,其中 "年 "和 "周 "是你的表的相应列名。