GetRecordProperties (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