I have a database table, with a column that contains integers. Each entry is a phone number, and they are all missing a zero at the beginning.
e.g. I have 798514586, 785558999
I want to run a SQL query that will modify each entry by putting a zero infront of it.
So the result will be 0798514586, 0785558999
IS there such a query to do this?