1. 新增一个表,通过另一个表的结构和数据
create table tab1 as select * from tab2
2. 如果表存在:
insert into tab1 select * from tab2;