I have a table with somthing like this.
Column1 Column2
Salade, Tomato, FOOD
Earth, Water, Fire Element
I want to have a view that looks like this.
Column1 Column2
Salade FOOD
Tomato FOOD
Earth Element
Water ELEMENT
Currently I have made a work arround with a cursor that loops true this table. Inserts in another table...
Would this be posible without a cursor? In 1 select statement without creating another table.