1、如果两张表字段相同; insert into table1 select * from table2; 2、只取某些字段; insert into table1(field1,field2) select field1,field2 from table2;