remove spaces sql server
SELECT REPLACE(' Hello World ',' ','')
remove spaces sql server
SELECT REPLACE(' Hello World ',' ','')
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'
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us