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 value is still there.
What do I need to do to remove the non-breaking space from the column?
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 value is still there.
What do I need to do to remove the non-breaking space from the column?
4条答案
按热度按时间v64noz0r1#
Try using
REPLACE
j5fpnvbx2#
You could also use
ufj5ltwl3#
If the above solutions does not work, try CHAR instead of NCHAR
CHAR worked for me.
ut6juiuv4#
NCHR(160) worked for me.
Oracle 19c.