I have a string that I am able to split into separate records.
ID --- string of values
1 ---- 1, 0, 0
2 ---- 0, 1,0 etc
Each string has the same number of values (43 records).
ID ---- value ---- Position
1 ----- 1
1 ----- 0
1 ----- 0 etc
I need to append a sequential number to the Position field of each set of strings.
ID ---- value ---- Position
1 ----- 1 --------- 1
1 ----- 0 --------- 2
1 ----- 0 --------- 3
2 ----- 0 --------- 1
2 ----- 1 --------- 2
2 ----- 0 --------- 3
ID --- string of values
1 ---- 1, 0, 0
2 ---- 0, 1,0 etc
Each string has the same number of values (43 records).
ID ---- value ---- Position
1 ----- 1
1 ----- 0
1 ----- 0 etc
I need to append a sequential number to the Position field of each set of strings.
ID ---- value ---- Position
1 ----- 1 --------- 1
1 ----- 0 --------- 2
1 ----- 0 --------- 3
2 ----- 0 --------- 1
2 ----- 1 --------- 2
2 ----- 0 --------- 3