如果新表存在
insert into 新表(col1,col2,col3......) select col1,col2,col3...... from 旧表;commit;
如果新表不存在
create table 新表 as select col1,col2,col3...... from 旧表;