insert data from one table to another in mysql

后端 未结 10 569
深忆病人
深忆病人 2020-11-29 18:39

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         


        
10条回答
  •  我在风中等你
    2020-11-29 19:44

    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);
    

提交回复
热议问题