ok I seem to be having troubles using rtrim and ltrim.
I have this sql
update table set description = lTRIM(rTRIM(description))
which should cut off the beginning and trailing white spaces but when I run
select distinct(description) from table order by description
after the trims
I get many results that look like this
'WRQ'
'WRQ '
'WRQ '
what is the deal?
tia
I have this sql
update table set description = lTRIM(rTRIM(description))
which should cut off the beginning and trailing white spaces but when I run
select distinct(description) from table order by description
after the trims
I get many results that look like this
'WRQ'
'WRQ '
'WRQ '
what is the deal?
tia