I am looking for some guidance for the problem below.
I have a table with two columns OP_ID
and value
.
The value column is string that has two delimiters in it a comma and for the end of the line a hash.
The current table is called Torque
.
OP_ID | value |
---|---|
930823 | 1,0.45,0.5,0.55,N.m.#2,0.25,0.3,0.35,N.m.# |
930824 | 1,0.45,0.5,0.55,N.m.# |
And the desired output into table called Torque2
OP_ID | Tool | R_lower_lim | R_nominal_torque| R_Upper_lim | units
----------|------|-------------|------------------|------------|--------
930823 | 1 | 0.45 | 0.5 | 0.55 | N.m.
930823 | 2 | 0.25 | 0.3 | 0.35 | N.m.
930824 | 1 | 0.45 | 0.5 | 0.55 | N.m.
I have not entered any code into the question because all of my attempts have been no where near the desired result.
Many thanks.