presto中date_diff参数 内容: 在中,`_`函数用于计算两个日期之间的天数差。它的语法如下: ``` _(, 1, 2) ``` 参数说明: - ``: 指定计算差值的单位,可以是``、``、``、``、``、``、``、``。 - `1`: 第一个日期,可以是字符串或日期类型。 - `2`: 第二个日期,可以是字符串或日期类型...
select _t, date_diff('second', from_iso8601_timestamp(_ts), lag(from_iso8601_timestamp(f._ts)) over (partition by uid order by dt) ) from logs d where _t = 'timespent' and dt = '2016-04-09' and uid = 'd2de01a1-8f78-49ce-a065-276c0c24661b' order by _ts; 原文由...