Data Integration
- Data Integration
- All Products
Property
| Value
| Description
|
---|---|---|
Frame
| Not specified
| Window functions access rows based on the offset argument and ignore the frame.
|
Partition key
| trip_id
| Groups the rows according to trip ID so that calculations are based on events from the same trip.
|
Order key
| _event_id Ascending
| Arranges the data chronologically by ascending event ID.
|
LAG ( _event_time, 1, NULL )
DATE_DIFF ( _event_time, LAG ( _event_time, 1, NULL ), 'ss' )
IIF ( DATE_DIFF < 60 or ISNULL ( _event_time ), 'Skip', 'Valid' )
|
|
|
|
|
---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|