Hive 日期取时间 比较大小
Posted 二十六画生的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hive 日期取时间 比较大小相关的知识,希望对你有一定的参考价值。
select substring('2021-10-27 01:27:15',12,length('2021-10-27 01:27:15')) ; -- 01:27:15
select substring('2021-10-27 01:27:15',12,length('2021-10-27 01:27:15')) < '23:59:59' -- true
select substring('2021-10-27 01:27:15',12,length('2021-10-27 01:27:15')) between '06:00:00' and '23:59:59' -- false
select '01:27:15' > '06:00:00' ; -- false
select '01:27:15' < '23:59:59' ; -- true
select '01:27:15' > '06:00:00' and '01:27:15' < '23:59:59' ; -- false
select '07:27:15' > '06:00:00' and '07:27:15' < '23:59:59' ; -- true
end
以上是关于Hive 日期取时间 比较大小的主要内容,如果未能解决你的问题,请参考以下文章