ASA run same code with different result?
jane
60
Reputation points
The following 2 codes get different result:
FROM IotBaseInput as event
CROSS APPLY GetArrayElements(event.monoEvent) AS arrayElement
CROSS APPLY GetRecordProperties(arrayElement.arrayvalue) AS recordProperty
Where recordProperty.PropertyName != 'bmsNum'
The result didn't filter 'bmsNum'
FROM IotHubInput AS event
CROSS APPLY GetArrayElements(event.event) AS arrayElement
CROSS APPLY GetRecordProperties(arrayElement.arrayvalue) AS recordProperty
Where recordProperty.PropertyName != 'recordTime' AND recordProperty.PropertyName != 'type'
The result without 'recordTime' and 'type'
Sign in to answer