i have field that has records like '1:23,2:23' and '2:43'
is there any way to split string into 1,23,2,23 (separate values, so i can work with them independently) using mysql query. for example add them to another table like
row1: 1 | 23
row2: 2 | 43
the string can contain more pairs of keys/ values