Here is my table with column names and data. Column part is datatype varchar, part1-part11 are datatypes real:
master part1 part2 part3 part4 part5 part6 part7 part8 part9 part10 part11
2222 132 154 264 308 0 350 0 0 0 0 351
4747 128 134 190 254 260 285 0 0 0 0 286
Here is the resulting 2 column dataset that I want to achieve. I have no clue how to accomplish this or if it is even possible.
Sorted numerically with master number for reference:
master data
2222 0
2222 0
4747 0
2222 0
4747 0
2222 0
4747 0
2222 0
4747 0
4747 128
2222 132
4747 134
2222 154
4747 190
4747 254
4747 260
2222 264
4747 285
4747 286
2222 308
2222 350
2222 351
Thank you very much for any and all suggestions and help. I am lost here
master part1 part2 part3 part4 part5 part6 part7 part8 part9 part10 part11
2222 132 154 264 308 0 350 0 0 0 0 351
4747 128 134 190 254 260 285 0 0 0 0 286
Here is the resulting 2 column dataset that I want to achieve. I have no clue how to accomplish this or if it is even possible.
Sorted numerically with master number for reference:
master data
2222 0
2222 0
4747 0
2222 0
4747 0
2222 0
4747 0
2222 0
4747 0
4747 128
2222 132
4747 134
2222 154
4747 190
4747 254
4747 260
2222 264
4747 285
4747 286
2222 308
2222 350
2222 351
Thank you very much for any and all suggestions and help. I am lost here