i want to read all data from one table and insert some data in to another table. my query is
INSERT INTO mt_magazine_subscription ( magazine_subscr
Actually the mysql query for copy data from one table to another is
Insert into table2_name (column_names) select column_name from table1
where, the values copied from table1 to table2