1.如果目的表已经存在:
这两个表结构必须一致
insert into table1 select * from tabel2
2.如果目的表不存在:
这个类似与克隆表
select * into tabel1 from tabel2