sql remove spaces before and after code example
Example 1: sql remove spaces
SELECT TRIM(' Exemple '); -- 'Exemple'
SELECT LTRIM(' Exemple '); -- 'Exemple '
SELECT RTRIM(' Exemple '); -- ' Exemple'
SELECT TRIM(BOTH 'x' FROM 'xxxExemplexxx'); -- 'Exemple'
SELECT TRIM(LEADING 'x' FROM 'xxxExemplexxx'); -- 'Exemplexxx'
SELECT LTRIM('xxxExemplexxx', 'x'); -- 'Exemplexxx'
SELECT TRIM(TRAILING 'x' FROM 'xxxExemplexxx'); -- 'xxxExemple'
SELECT RTRIM('xxxExemple', 'x'); -- 'Exemplexxx'
Example 2: remove spaces sql 2008
SELECT RTRIM(LTRIM(' Word '))