| col1 | col2 |
|---|---|
| First,First,Second | row,First,First |
| Second,Second,Third | row,Second,Second |
I would like to transform col1 into to this, without removing duplicates in col2 and without creating new rows
| col1 | col2 |
|---|---|
| First,Second | row,First,First |
| Second,Third | row,Second,Second |
And what if the separator is a || instead of a ,?