I am very new to SQL and I need help trying to figure something out for work.
So I have a table called Acxiom and one of the fields is called Account_ID. Account ID's are all unique but they either start with 07 or 10 and are supposed to be 9 characters long. For some reason, the ERP system that we pull data from does not include the leading zero in its warehouse. I need to link the Acxiom table to another table with Account ID acting as the primary key. I can't do that unless I add the leading zero.
Right now is an example of what the table looks like:
79570233
79574812
79575113
103885860
103834660
102836484
I need it to look like this:
079570233
079574812
079575113
103885860
103834660
102836484
I genuinely appreciate everyone's help!