Answers for "remove spaces from string in sql"

SQL
5

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'
Posted by: Guest on May-12-2021
-2

remove all spaces from string sql

SELECT REPLACE(' Hello World ',' ')
Posted by: Guest on April-15-2021

Code answers related to "remove spaces from string in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language