Answers for "mysql copy table rows from one database to another"

SQL
3

how to copy a table from one database to another in mysql

INSERT INTO database2.table2 SELECT * from database1.table1
Posted by: Guest on December-17-2021
0

mysql copy table rows from one database to another

insert into database1.table  select * from database2.table where id not in(select id from database1.table);
Posted by: Guest on April-07-2022

Code answers related to "mysql copy table rows from one database to another"

Code answers related to "SQL"

Browse Popular Code Answers by Language