✅ Azure 流分析 ✅ 构造事件流
返回具有记录属性名称和值的数据集。 GetRecordProperties 函数的结果必须与 CROSS APPLY 运算符一起使用。
语法
GetRecordProperties ( column_reference )
论据
Column_reference
要计算的列引用表达式。 列的类型必须为 Record
返回类型
返回包含 PropertyName 和 PropertyValue 列的数据集。
例子
SELECT
recordProperty.PropertyName,
recordProperty.PropertyValue
FROM input as event
CROSS APPLY GetRecordProperties(event.recordField) AS recordProperty