All I have what seems to be a pretty straight forward question, that I haven't been able to figure out. For example, if I have a text string like T6L 7H5
. Using SQL I need to remove the inner white space from this string so that it displays like T6L7H5
.
Things to consider:
- Teradata (v.13.10) is my RDBMS, so
REPLACE('T6L 7H5', ' ', '')
is not an option here. - On this particular server I am a business user w/ very limited permissions so creating a UDF is not an option either.