如何选择在现在和3小时之间记录的观测值,即现在-3? 有一个列有时间戳,我在这个问题中指的是该列。我知道凤凰有函数current_time()可以给我们当前的时间,但我怎么能从中减去3小时呢?
select col1, col2, col3
from table
where col1 between current_time() and ???;
我应该在???
使用什么?
答案 0 :(得分:1)
Phoenix不支持间隔数据类型。 https://phoenix.apache.org/language/datatypes.html
您应该减去一个代表天数(使用小数天)或毫秒的数字。我不记得它是哪一个。