Answers for "mysql loop copying data from one table 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 "mysql loop copying data from one table to another"

Code answers related to "SQL"

Browse Popular Code Answers by Language