The query for copy data from one table to another is:
Insert into table2 (field1, field2) select field1, field2 from table1
If you want to copy only selected values, then use where clause in query
Insert into table2 (field1, field2) select field1, field2 from table1 where field1=condition