I have a table that contains a unique key and a text field. The text fields contains part numbers of different lengths like:
key part_numbers
----- ------------
1 99
999
9999
2 99999
99
9999
Over time, the length of each part number could get longer.
With that in mind, I want to create a new RECORD for each part number like this:
key part_numbers
----- ------------
1 99
1 999
1 9999
2 99999
2 99
2 9999
Thanks,
Jeff
key part_numbers
----- ------------
1 99
999
9999
2 99999
99
9999
Over time, the length of each part number could get longer.
With that in mind, I want to create a new RECORD for each part number like this:
key part_numbers
----- ------------
1 99
1 999
1 9999
2 99999
2 99
2 9999
Thanks,
Jeff