什么是 spark-sql 相当于 sql 中的 dateadd(秒)函数?
What would be spark-sql equivalent of dateadd (seconds) function in sql?
我想使用 spark-sql 向数据框中的时间戳列添加 10 秒。 date_add() 函数似乎可以增加天数,但不能增加秒数。
您可以使用selectExpr along with INTERVAL
as the example suggests here
我想使用 spark-sql 向数据框中的时间戳列添加 10 秒。 date_add() 函数似乎可以增加天数,但不能增加秒数。
您可以使用selectExpr along with INTERVAL
as the example suggests here