Answers for "remove all space in column sql"

SQL
0

space not removing from column in sql

update thetable set thecolumn = rtrim(replace(thecolumn, char(160), char(32)))
Posted by: Guest on January-07-2021
-2

remove all spaces from string sql

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

Code answers related to "remove all space in column sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language