Answers for "how to copy table strucutre and data from one mysql server to another"

SQL
0

copy data from one table to another mysql

INSERT INTO table2 (st_id,uid,changed,status,assign_status)
SELECT st_id,from_uid,now(),'Pending','Assigned'
FROM table1
Posted by: Guest on June-06-2021

Code answers related to "how to copy table strucutre and data from one mysql server to another"

Code answers related to "SQL"

Browse Popular Code Answers by Language