try it
update YourTable
set YourColumn =replace(YourColumn,CHAR(13),'')
or just for choice
SELECT replace(YourColumn,CHAR(13),'')
FROM YourTable
for char (10) and char (13) you can do this
SELECT replace(replace(YourColumn,CHAR(13),''),CHAR(10),'')
FROM YourTable
'' will replace it with empty if you want a space then use '' instead of ''
source
share