I have a table like that:
columnId1 => "word1,word2,word3"
columnId3 => "word4,word5,word6"
I want to create a table like that:
columnId1 word1
columnId1 word2
columnId1 word3
columnId2 word4
columnId2 word5
columnId2 word6
How can I do it in PLSQL?
this is assuming you are using 10g and have access to Regular Expressions. this should give you enough to go on to create your statements, do note it is brittle and can break if columnId1 and columnId2 have different amounts of commas and such.