I need to write a SQL query that will take stored JSON in a table column and return just the array element. Problem is I can't use a JSON parser for this due to it being SQL Azure. I take it I will have to do this using regex.
Here is my Json stored in SQL
[{"IsPrimary":false,"Address":"test@test.com","Type":"Other"}]
I want to select out just the email address "test@test.com" only.