Hi I have a column of nvarchar(1000) type. I need to get rid of encode characters from that column and replace them with their special characters. For Example:
column value is : 'This text values contains this '&' this'.
I have to replace '&' with '&'.
- First have to find the record which has
'&'in the column (may be using like condition) - And then replace only this word with its special character
How do i do that? Pl. help