I have a rather large table that has ID numbers in a comment field. Some comment fields can have up to 20 ID numbers. Of course, I wnat to feather the ID numbers from the comment field creating a separate row for each ID. Fortunately, the ID's are mostly integers -- so I think that I could loop through a set of integers and create a new record if a string in the comment field compared with the current integer in the loop. I would probably do something like:
While (not last record)
for (i = 1; i < 3000; i++)
if (comment like 'i')
make new record with i as the id
endif
endfor
endwhile
I just not really sure where to start. Thanks.
While (not last record)
for (i = 1; i < 3000; i++)
if (comment like 'i')
make new record with i as the id
endif
endfor
endwhile
I just not really sure where to start. Thanks.