is there any similar syntax to this in mysql:
insert into database2.table1 (column1, column2) select column4, column5 from database2.table1;
is there any similar syntax to this in mysql:
insert into database2.table1 (column1, column2) select column4, column5 from database2.table1;
I create a view for the columns I wanted to copy
than i run this query:
insert into database2.table1 (column1, column2) select * from database1.view;