Hi Christopher Mühl,
Thank you for posting query in Microsoft Q&A Platform.
Regarding getting first item from array, I would suggest you use
SUBSTRING()andCHARINDEX()functions on top of your array string. Please check below example.
below is the code for substring related function which I used in above screenshot.
SUBSTRING(coordinates,2,CHARINDEX(',',coordinates)-2)
Since your images array also has only values with keys, I would recommend to use
STRING_SPLITandREPLACE()functions on top ofImagesarray string. Kindly check below screenshot.
Hope this helps. Please let me know if any further queries.
Please consider hitting Accept Answer button. Accepted answers help community as well.