MYSQL, Copy selected fields from one table to another

后端 未结 8 1753
情深已故
情深已故 2020-12-23 09:58

In MySQL, How do I copy a FIELD with all RECORDS from TABLE1 to TABLE2 which corresponds to a primary key ie: EMPLOYEE no.?

8条回答
  •  失恋的感觉
    2020-12-23 10:39

    Insert into Delivery (DeliveredDate, appid, DownloadSize, UploadSize) select Delivered, Appid, DownloadSize,UploadSize from Delivery_Summary;

提交回复
热议问题