I would like to create a view from a table like this :
Example in table :
cola column1
-------------------
D1 val1, val2
D3 val3
Expected Result into a view:
cola column1
-------------------
D1 val1
D1 val2
D3 val3
I want to divide the value of column1 and create a new row, but keep the values of the other columns.