Trim all the values in a column in a sql
SQL does not have a trim function. You'll need to use RTRIM and LTRIM together.
SQL does not have a trim function. You'll need to use RTRIM and LTRIM together.
update MyTable set Name = RTRIM(LTRIM((name))