다음을 통해 공유


GetRecordProperties(Azure Stream Analytics)

레코드 속성 이름 및 값이 있는 데이터 세트를 반환합니다. GetRecordProperties 함수의 결과는 CROSS APPLY 연산자에서 사용해야 합니다.

Syntax

GetRecordProperties ( column_reference )  

인수

Column_reference

평가할 열 참조 식입니다. 열은 Record 형식이어야 합니다.

반환 형식

PropertyName 및 PropertyValue 열이 있는 데이터 세트를 반환합니다.

SELECT   
    recordProperty.PropertyName,  
    recordProperty.PropertyValue  
FROM input as event  
CROSS APPLY GetRecordProperties(event.recordField) AS recordProperty