to remove only 'O' from left side only use:select replace(ltrim(replace(@str, '0', ' ')), ' ', '0')
Post a Comment
1 comment:
to remove only 'O' from left side only use:
select replace(ltrim(replace(@str, '0', ' ')), ' ', '0')
Post a Comment