1、复制所有字段

insert into table1 select * from table2 

2、复制制定字段

insert into table1 ( 字段1,字段2)  select  ( 字段1,字段2) from table2