I have a table with 2 fields
cable_num
cond_num
cable_num is a text field
cond_num is a numeric field
ex.
cable_num cond_num
1AP0001 4
1BA0001 2
I need the above info in a new table and formatted like below:
1AP0001_1 4
1AP0001_2 4
1AP0001_3 4
1AP0001_4 4
1BA0001_1 2
1BA0001_2 2
I am very novice at this and I believe i will need some sort of loop plus an INSERT and UPDATE phrase.
Any code examples would help me greatly in getting this project started the right way.
Thanks
cable_num
cond_num
cable_num is a text field
cond_num is a numeric field
ex.
cable_num cond_num
1AP0001 4
1BA0001 2
I need the above info in a new table and formatted like below:
1AP0001_1 4
1AP0001_2 4
1AP0001_3 4
1AP0001_4 4
1BA0001_1 2
1BA0001_2 2
I am very novice at this and I believe i will need some sort of loop plus an INSERT and UPDATE phrase.
Any code examples would help me greatly in getting this project started the right way.
Thanks