I need to extract the following fields into a new table, any ideas if I can do this exclusively with a query or if I need to use PHP as well.
CURRENT TABLE STRUCTURE
USERID USEREXPERINCE 1 a:4:{i:0;s:20:"business development";i:1;s:6:"design";i:2;s:9:"marketing";i:3;s:15:"press relations";} REQUIRED TABLE STRUCTURE USERID USEREXPERINCE 1 business development 1 design 1 marketing 1 press relations 2 web development 2 design 3 marketing 3 business development
Thanks
Jonathan