Is it possible to parse this JSON array and convert it into a table and do this in AWS Redshift?
This array:
[
{"Event":"start","EventDateTime":"2015-09-15T03:45:16.681428Z"},
{"Event":"process","EventDateTime":"2015-09-15T03:45:16.681428Z"},
{"Event":"end","EventDateTime":"2015-09-15T03:45:16.681428Z"}
]
Convert to a table with Event and EventDateTime fields.
I have tried the available json functions and string functions and have come up empty.
Thanks!
