GetRecordProperties (Azure Stream Analytics)
Updated: April 22, 2016
Applies To: Azure
Returns a dataset with record property names and values. The result of the GetRecordProperties function must be used with the CROSS APPLY operator.
Syntax
GetRecordProperties ( column_reference )
Column_reference
Is the column reference expression to be evaluated. Column must be of type Record
Returns a dataset with PropertyName and PropertyValue columns.
SELECT
recordProperty.PropertyName,
recordProperty.PropertyValue
FROM input as event
CROSS APPLY GetRecordProperties(event.recordField) AS recordProperty
Show: