gabydrdoom
Programmer
Helo,
I have a table with two fields named map1 and map2 and I want to make concatenation according to the following model:
map1 map2 map12
100001 1 100001001
100001 22 100001022
100001 87 100001087
100002 999 10000299
I want to concatenate like this:
for map2=1: map12=map1+'0'+'0'+map2
for map2=22: map12=map1+'0'+map2
for map3=999: map12=map1+map2
I have a table with two fields named map1 and map2 and I want to make concatenation according to the following model:
map1 map2 map12
100001 1 100001001
100001 22 100001022
100001 87 100001087
100002 999 10000299
I want to concatenate like this:
for map2=1: map12=map1+'0'+'0'+map2
for map2=22: map12=map1+'0'+map2
for map3=999: map12=map1+map2