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 日期取时间 比较大小的主要内容,如果未能解决你的问题,请参考以下文章

易语言时间比较大小(先后)

python 中hive 取日期时间的方法

sql日期比较大小

Hive 时间日期处理总结

如何用JS比较两个日期时间的大小呢?

java怎么比较两个日期(年和月)的大小