I\'m trying to remove a non-breaking space (CHAR 160) from a field in my table. I\'ve tried using functions like RTRIM() to get rid of it, but the
CHAR 160
RTRIM()
If the above solutions does not work, try CHAR instead of NCHAR
UPDATE Your_Table SET Your_Column = REPLACE(Your_Column, CHAR(160), '') WHERE Id = x
CHAR worked for me.