In mysql database, I have those data as bellow:
id, phonenumber, location
1, 111222, NY
2, 222333, GB
....
Now I would extend the phonenumber field (varchar) for example, if I extend one more number, then the expect data would be:
id, phonenumber, location
1, 1112220, NY
2, 1112221, NY
3, 1112222, NY
4, 1112223, NY
5, 1112224, NY
6, 1112225, NY
7, 1112226, NY
8, 1112227, NY
9, 1112228, NY
10, 1112229, NY
11, 2223330, PH
12, 2223331, PH
...
And this is the example for add one more number. The real situation is I would need to add 4 more number. (add suffix from 0000 ~9999 )
Any fast way to do this via running few sql command ? Thanks!