Answers for "how to copy data from one table of database instance to other table instance in mysql"

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 data from one table of database instance to other table instance in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language