I have a table with column "A". Some rows have 14 digits for column "A" and some have only 12. I need to convert all entries to 14 digits. Data Type - varchar
I would like to update all the lines at once (one query) by adding zeros before the first digit, so an entry like 012345678910 will become 00012345678910.
Is it possible to do this in one query? Thanks
source
share