Answers for "in sql the spaces at the end of the string are removed by the function"

SQL
6

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 "in sql the spaces at the end of the string are removed by the function"

Code answers related to "SQL"

Browse Popular Code Answers by Language