I have a field in a table the has leading spaces.
How can I change the fields to remove any leading spaces?
I was thinking of something like below, but I dont think its correct.
---
update tableOne
set name = (select ltrim(name) from tableOne)
---
Any thoughts on how I should do this?
Thanks.
How can I change the fields to remove any leading spaces?
I was thinking of something like below, but I dont think its correct.
---
update tableOne
set name = (select ltrim(name) from tableOne)
---
Any thoughts on how I should do this?
Thanks.