Answers for "mysql insert rows to another database"

SQL
0

mysql insert rows to another database

INSERT INTO db1.table SELECT * FROM db2.table;
Posted by: Guest on October-11-2021
0

mysql insert rows to another database

CREATE TABLE db2.table LIKE db1.table;
INSERT INTO db2.table 
SELECT column_name FROM db1.table
Posted by: Guest on October-11-2021

Code answers related to "mysql insert rows to another database"

Code answers related to "SQL"

Browse Popular Code Answers by Language