Accessing Array Elements in Azure Stream Analytics
问题 Let's say I have a JSON object coming into an Azure Stream Analytics job: { "coordinates":{ "type":"Point", "LongLat":[ 115.17348, -8.72263 ] }, } I could do the following to get the individual values of "Long" and "Lat"? Could I do the following to isolate the array value [115.17348, -8.72263]: Select coordinates.longlat However I'm having trouble just grabbing individual elements of the array. I've seen fuzzy documentation on the web about GetArrayElement(), stream analytics keeps saying