SyntaxFix
Write A Post
Hire A Developer
Questions
you can store your array using group_Concat like that
INSERT into Table1 (fruits) (SELECT GROUP_CONCAT(fruit_name) from table2) WHERE ..... //your clause here
HERE an example in fiddle