03Explorer
Technical User
I have part numbers like this: 5-6-2-3-1-1
I want each numeric value to be populating a column of its own
However, the catch is there could be double or triple digits between dashes
5-67-2-3-1-1
5-6-2-231-1-2
What is the best query method to break these out of the one string value?
I want each numeric value to be populating a column of its own
Code:
first second third fourth fifth sixth
===== ====== ===== ====== ===== =====
5 6 2 3 1 1
However, the catch is there could be double or triple digits between dashes
5-67-2-3-1-1
5-6-2-231-1-2
Code:
first second third fourth fifth sixth
===== ====== ===== ====== ===== =====
5 67 2 3 1 1
5 6 2 231 1 1
What is the best query method to break these out of the one string value?