哪个 current_date 函数适用于 impala 和 trino?

问题描述 投票:0回答:2
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;

是否有任何功能可以在两个集群中使用?

hive presto impala trino
2个回答
0
投票

您可以在 impala 中使用

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


0
投票

Trino 和 Impala 都支持 now() 并返回时间戳。然而我不确定你想通过选角达到什么目的。

© www.soinside.com 2019 - 2024. All rights reserved.