create table new_table as select * from old_table;
INSERT into table1 select * from table2;
INSERT into table1(表中字段1,表中字段2) select 表中字段1,表中字段2 from table2;