方法一:只复制表的结构,不复制表的内容
create table 新表 select * from 旧表 where 1=2
或者:create table 新表 like 旧表
方法二:复制表结构及数据到新表
create table 新表 select * from 旧表