hive 时间处理总结

[ 参考link]

HIVE 不能直接判断一个日期是周几

SELECT 
    pmod(datediff(current_date,'2019-07-22'), 7) + 1, 
    pmod(datediff('2019-07-28 07:27:26','2019-07-22'), 7) + 1
    -- 2019-07-22 是周一
;

你可能感兴趣的:(hive 时间处理总结)