Remove specific digit from number
I need to change a 13-digit number to a 12-digit number by removing a specific digit. For example:
1012200912003
I need to remove the 3rd digit from the right, so that the number would be:
101220091203
How can I do that in SQL?
Thanks in advance!
John