I have the following table:
tlb (Text) value(Integer) cost (numeric)
150;itema;section;shelf 5 0.5
120;itemb;shelf;box 5 2.3
151;itemf;section;shelf 5 1.5
I want to convert this table into this table:
a b c d value cost
150 itema section shelf 5 0.5
120 itemb shelf box 5 2.3
151 itemf section shelf 5 1.5
basically break the tlb column to 4 different columns .
The structure of tlb is always the same string;string;string;string
How can i do that?
split_parteg