spark sql当前时间戳功能

时间:2015-12-07 14:40:43

标签: apache-spark apache-spark-sql

spark sql中是否有一个sql fucntion返回当前时间戳,impala中的例子NOW()是返回当前时间戳的函数在spark sql中是否类似?

由于

1 个答案:

答案 0 :(得分:17)

尝试使用current_timestamp函数。

current_timestamp() - Returns the current timestamp at the start of query evaluation. All calls of current_timestamp within the same query return the same value.