I have a table in SQL Server which has an address
column of string datatype.
Address values like
{"line1":"Nav Place Road","line2":"Nyork City","line3":"USA 34576"}
I want to get result in a separate column line1, line2, line3, line4
with select query.
I try with split function, but I can't get proper result.