hive 哪个curent_date函数适用于impala和特里诺?

ercv8c1e  于 2023-10-18  发布在  Hive
关注(0)|答案(2)|浏览(147)
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;

是否有在两个群集中都有效的功能?

oalqel3c

oalqel3c1#

你可以在impala中使用current_date()。它是一个函数,所以你需要使用()。https://impala.apache.org/docs/build/html/topics/impala_datetime_functions.html#datetime_functions__current_date

ni65a41a

ni65a41a2#

特里诺和Impala都支持now()并返回时间戳。但是我不知道你想通过选角来达到什么目的。

相关问题