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
If you want insert all data from one table to another table there is a very simply sql
INSERT INTO destinationTable (SELECT * FROM sourceDbName.SourceTableName);