Table: numdata
id numb
1 123
2 456789
3 123
4 456789
5 123
6 456789
7 123
8 456789
9 123
10 456789
11 123
12 456789
13 123
14 456789
......
What i would like to do is combine the data in numb only, so the desired data output would be something like this.
id numb
1 123456789
2 123456789
3 123456789
4 123456789
5 123456789
6 123456789
7 123456789
8 123456789
9 123456789
10 123456789
11 123456789
12 123456789
....
I have about 1000 values to do like this and they are all different.
I have honestly no idea how to even go about this so any help would be greatly appreciated, thanks in advance.