next()

Learn how to use the next() function to return the value of the next column at an offset.

Returns the value of a column in a row that is at some offset following the current row in a serialized row set.

Syntax

next(column, [ offset, default_value ])

Parameters

NameTypeRequiredDescription
columnstring✔️The column from which to get the values.
offsetintThe amount of rows to move from the current row. Default is 1.
default_valuescalarThe default value when there’s no value in the next row. When no default value is specified, null is used.

Examples

Filter data based on comparison between adjacent rows

The following query returns rows that show breaks longer than a quarter of a second between calls to sensor-9.

TransformedSensorsData
| where SensorName == 'sensor-9'
| sort by Timestamp asc
| extend timeDiffInMilliseconds = datetime_diff('millisecond', next(Timestamp, 1), Timestamp)
| where timeDiffInMilliseconds > 250

Output

TimestampSensorNameValuePublisherIdMachineIdtimeDiff
2022-04-13T00:58:53.048506Zsensor-90.39217481975439894fdbd39ab-82ac-4ca0-99ed-2f83daf3f9bbM100251
2022-04-13T01:07:09.63713Zsensor-90.46645392778288297e3ed081e-501b-4d59-8e60-8524633d9131M100313
2022-04-13T01:07:10.858267Zsensor-90.693091598493419278ca033-2b5e-4f2c-b493-00319b275aeaM100254
2022-04-13T01:07:11.203834Zsensor-90.524158088402497784ea27181-392d-4947-b811-ad5af02a54bbM100331
2022-04-13T01:07:14.431908Zsensor-90.354306454054520af415c2-59dc-4a50-89c3-9a18ae5d621fM100268

Perform aggregation based on comparison between adjacent rows

The following query calculates the average time difference in milliseconds between calls to sensor-9.

TransformedSensorsData
| where SensorName == 'sensor-9'
| sort by Timestamp asc
| extend timeDiffInMilliseconds = datetime_diff('millisecond', next(Timestamp, 1), Timestamp)
| summarize avg(timeDiffInMilliseconds)

Output

avg_timeDiffInMilliseconds
30.726900061254298

Extend row with data from the next row

In the following query, as part of the serialization done with the serialize operator, a new column next_session_type is added with data from the next row.

ConferenceSessions
| where conference == 'Build 2019'
| serialize next_session_type = next(session_type)
| project time_and_duration, session_title, session_type, next_session_type

Output

time_and_durationsession_titlesession_typenext_session_type
Mon, May 6, 8:30-10:00 amVision Keynote - Satya NadellaKeynoteExpo Session
Mon, May 6, 1:20-1:40 pmAzure Data Explorer: Advanced Time Series analysisExpo SessionBreakout
Mon, May 6, 2:00-3:00 pmAzure’s Data Platform - Powering Modern Applications and Cloud Scale Analytics at Petabyte ScaleBreakoutExpo Session
Mon, May 6, 4:00-4:20 pmHow BASF is using Azure Data ServicesExpo SessionExpo Session
Mon, May 6, 6:50 - 7:10 pmAzure Data Explorer: Operationalize your ML modelsExpo SessionExpo Session