1.完全复制表结构和数据
create table newtable as select * from oldtable
2.只复制表结构
create table newtable as select * from oldtable where 1<>1
3.只复制指定字段
create table newtable as select id,age,name oldtable where 1<>1
4.复制指定字段以及数据
create table newtable as select id,age,name oldtable