I have a column which can contain over 20 different values and they are seprated by semicolon.
for example : A;B;C;D;E;F;G;H;....
, I need to split all the values in new columns.
I tried to split it with SPLIT_PART()
, but it seems i need to sepcify which position do i want from the string. But in my case, there are too many values and it's not very effcient to do like this.
I wonder if there's anyway that I can split them by ; and all value will be saved in a new column?