trino - select cast(date_format(current_date,'Y%M%D') as int) from employee; impala - select cast(from_timestamp(now(),'YYYMMDD') as int) from employee;
是否有在两个群集中都有效的功能?
oalqel3c1#
你可以在impala中使用current_date()。它是一个函数,所以你需要使用()。https://impala.apache.org/docs/build/html/topics/impala_datetime_functions.html#datetime_functions__current_date
current_date()
ni65a41a2#
特里诺和Impala都支持now()并返回时间戳。但是我不知道你想通过选角来达到什么目的。
2条答案
按热度按时间oalqel3c1#
你可以在impala中使用
current_date()
。它是一个函数,所以你需要使用()。https://impala.apache.org/docs/build/html/topics/impala_datetime_functions.html#datetime_functions__current_dateni65a41a2#
特里诺和Impala都支持now()并返回时间戳。但是我不知道你想通过选角来达到什么目的。