dayofweek在hive2.2.0开始支持 ,低版本的hive没有提供原生的dayofweek函数,有时需要用到的时候不甚方便。
其实低版本的sparksql和hive中可用以下方式实现dayofweek功能
select 7- datediff(next_day('2018-03-12',"Sunday"),'2018-03-12'). select date_format('2018-03-12' ,'u'). select date_format(from_unixtime(unix_timestamp('20180313','yyyyMMdd'),'yyyy-MM-dd'),'u')
参考 :