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":"[email protected]","Type":"Other"}]
I want to select out just the email address "[email protected]" only.