space not removing from column in sql

Solutions on MaxInterview for space not removing from column in sql by the best coders in the world

showing results for - "space not removing from column in sql"
Augustine
03 Nov 2019
1update thetable set thecolumn = rtrim(replace(thecolumn, char(160), char(32)))
2