insert data from one table to another in mysql

后端 未结 10 565
深忆病人
深忆病人 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:27

    It wont work like this.

    When you try to insert the row using a query all values should be there in query.

    With the above problem you want to insert magazine_subscription_id, subscription_name, magazine_id, status in select query you have magazine_subscription_id, subscription_name, magazine_id, status 1 it is not possible.

    If you want to insert either you need to insert using query of direct values

提交回复
热议问题