sql remove spaces in string code example
Example 1: remove spaces sql 2008
SELECT RTRIM(LTRIM(' Word '))
Example 2: remove all spaces from string sql
SELECT REPLACE(' Hello World ',' ')
SELECT RTRIM(LTRIM(' Word '))
SELECT REPLACE(' Hello World ',' ')