✅ Azure Stream Analytics ✅ Fabric Eventstream
레코드 속성 이름 및 값이 있는 데이터 세트를 반환합니다. GetRecordProperties 함수의 결과는 CROSS APPLY 연산자에서 사용해야 합니다.
문법
GetRecordProperties ( column_reference )
주장들
Column_reference
평가할 열 참조 식입니다. 열은 레코드 형식이어야 합니다.
반환 형식
PropertyName 및 PropertyValue 열이 있는 데이터 세트를 반환합니다.
예시
SELECT
recordProperty.PropertyName,
recordProperty.PropertyValue
FROM input as event
CROSS APPLY GetRecordProperties(event.recordField) AS recordProperty