I have the below scenario My column values looked like below :
loc=adhesion;pos=31;refresh=559;tag=post;tag=article;tag=business;
I want to separate all the values on the basis of ';' delimiter.
Please suggest the code to generate the below result in bigquery.
Example : My output should look like below :
Number of columns should get created with the below values :
col1 : loc=adhesion
Col2 : pos=31
col3 : refresh=559
col4 : tag=post
and so on Thank you for your help.