prev()

Learn how to use the prev() function to return the value of a specific column in a specified row.

Returns the value of a specific column in a specified row. The specified row is at a specified offset from the current row in a serialized row set.

Syntax

prev(column, [ offset ], [ default_value ] )

Parameters

NameTypeRequiredDescription
columnstring✔️The column from which to get the values.
offsetintThe offset to go back in rows. The default is 1.
default_valuescalarThe default value to be used when there are no previous rows from which to take the value. The default is null.

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', Timestamp, prev(Timestamp, 1))
| 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', Timestamp, prev(Timestamp, 1))
| summarize avg(timeDiffInMilliseconds)

Output

avg_timeDiffInMilliseconds
30.726900061254298

Extend row with data from the previous row

In the following query, as part of the serialization done with the serialize operator, a new column previous_session_type is added with data from the previous row. Since there was no session prior to the first session, the column is empty in the first row.

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

Output

time_and_durationsession_titlesession_typeprevious_session_type
Mon, May 6, 8:30-10:00 amVision Keynote - Satya NadellaKeynote
Mon, May 6, 1:20-1:40 pmAzure Data Explorer: Advanced Time Series analysisExpo SessionKeynote
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 SessionBreakout
Mon, May 6, 6:50 - 7:10 pmAzure Data Explorer: Operationalize your ML modelsExpo SessionExpo Session