Need to help with following select col1, col2, split(col3) from test;
Table values:
Col1 col2 col3
xxx yyy a,b,c
iii jjj 1,2,3
col3 contains comma-delimited values.
looking to achieve the following result. Splitting Col3 values for same col1 and col2 vlaue.
col1 col2 split
xxx yyy a
xxx yyy b
xxx yyy c
iii jjj 1
iii jjj 2
iii jjj 3
Any regex or pl/sql function idea to help with this.