Answers for "how to update column value to remove space in sql table"

SQL
1

sql update table remove spaces

LTRIM(RTRIM(ColumnName))
Posted by: Guest on January-14-2021
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

Code answers related to "how to update column value to remove space in sql table"

Code answers related to "SQL"

Browse Popular Code Answers by Language