Actually i am using Modbus simulator and sending data to azure iot hub.I am using azure stream analytics but i am not able to apply any quert on modbus data will it possible to apply azure stream analytics query on modbus data or opc ua simulated data there is only one query which can perform is select * and also will it be possible to find object value through azure analytics query. i am providing json value for reference { "body": { "PublishTimestamp": "2020-06-23 05:34:22", "Content": [ { "HwId": "PowerMeter-0a:01:01:01:01:01", "Data": [ { "CorrelationId": "DefaultCorrelationId", "SourceTimestamp": "2020-06-23 05:34:21", "Values": [ { "DisplayName": "humidity", "Address": "400002", "Value": "47" }, { "DisplayName": "Temperature", "Address": "400001", "Value": "78" } ] } ] } ] } } i need to find the value data through azure analytics query this is my query i am able to get the data till Content
SELECT body.Content FROM temperature
and when i am trying this query select body.Content.data.Values.Value FROM temperature
i am getting null as output
thanks in advance Avi