[{"key":"Mobile","value":"9100617634"},{"key":"Email","value":"[email protected]"}]
The above one represents the value in one column of a table. I want 2 columns named as mobile and email where those having values as 9000617634,balajirao@ziraff, respectively . How to get in sql server.
see the below one.
mobile Email
------ ------------
9100617634 [email protected]
SELECT case when [MOBILE/PHONE] like '[a-z]%' then null else [MOBILE/PHONE] end as [MOBILE/PHONE], case when ISNUMERIC(email)=0 then EMAIL end as EMAIL FROM ( select REPLACE(SUBSTRING(RIGHT(right(left(AC.Communication,charindex('}',AC.Communication)),len(left(AC.Communication,charindex('}',AC.Communication))) - charindex(':',left(AC.Communication,charindex('}',AC.Communication)))),LEN(right(left(AC.Communication,charindex('}',AC.Communication)),len(left(AC.Communication,charindex('}',AC.Communication))) - charindex(':',left(AC.Communication,charindex('}',AC.Communication)))))-CHARINDEX(':',right(left(AC.Communication,charindex('}',AC.Communication)),len(left(AC.Communication,charindex('}',AC.Communication))) - charindex(':',left(AC.Communication,charindex('}',AC.Communication)))))),2,CHARINDEX(']',AC.Communication)),'"}','') AS [MOBILE/PHONE], REPLACE(REPLACE(LEFT(right(AC.Communication,charindex(':',reverse(AC.Communication))),LEN(right(AC.Communication,charindex(':',reverse(AC.Communication))))-charindex('}',reverse(right(AC.Communication,charindex(':',reverse(AC.Communication)))))),':"',' '),'"','') AS EMAIL
from DimAccountContact as AC