I have a my table in redshift that contains some concatenated id
Product_id , options_id
1,           2
5,           5;9;7
52,          4;5;8,11
I want to split every my table like this:
 Product_id , options_id
 1 ,           2
 5,            5
 5,            9
 5,            7
 52,           4
 52,           5
 52,           9
in the documentation of redshift, i find a similar function 'split part' but with this function i must enter the number of the part that i want to get exp:
Product_id , options_id
5,          5;9;7
split_part(options_id,';',2) will return 9,
Any help please Thanks.
 
     
     
    