GetRecordProperties (Azure Stream Analytics)

レコード プロパティの名前と値を含むデータセットを返します。 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