I have the following example of JSON which I am trying to send to PowerBI through Azure Stream Analytics.
[{
"timestamp":1526452793090,
"values":[
{
"id":"Device1.K1001",
"v":false,
"q":true,
"t":1359326344047
}
]
}]
My first assumption was to do the following query:
SELECT
timestamp,
[values].id,
[values].v,
[values].q,
[values].t
INTO
[PowerBI]
FROM
[IoTHub]
Why is the above solution wrong?
Best regards Michael
