หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
✅ Azure Stream Analytics ✅ Fabric Eventstream
Returns a dataset with record property names and values. The result of the GetRecordProperties function must be used with the CROSS APPLY operator.
Syntax
GetRecordProperties ( column_reference )
Arguments
Column_reference
Is the column reference expression to be evaluated. Column must be of type Record
Return Types
Returns a dataset with PropertyName and PropertyValue columns.
Examples
SELECT
recordProperty.PropertyName,
recordProperty.PropertyValue
FROM input as event
CROSS APPLY GetRecordProperties(event.recordField) AS recordProperty