remove zeros only to left of number
Hi,
I want a function that will remove 0 characters only to the left of a number. However the number is in string format.
For example, I want to replace the following string:
'00000010200'
to be
'10200'
I understand that REPLACE('00000010200','0') would remove all 0 characters.
Can anyone provide a solution to this?