MS SQL does not have a trim function. You’ll need to use rTrim and lTrim together.
update MyTable set Name = lTrim(rTrim(name))
MS SQL does not have a trim function. You’ll need to use rTrim and lTrim together.
update MyTable set Name = lTrim(rTrim(name))