1.查看原表表结构
show create table oldtbname;
2.复制语句,执行,修改表名newtbname--复制表结构
3.复制表数据
insert into newtbname(a,b,c) select a,b,c from oldtbname
--------------------------------------------------------------------------------------------------
复制表结构
create table newtab 【as】 select * from emp where 1=2;
----------------------------------------------------------------------------------------
复制表结构及数据
create table newtab 【as】 select * from emp;//oracle要加as
-----------------------------------------------------------------------------
复制表结构及数据
create table newtab(
select * from old //灵活加条件,根据查询的结果作为结构及数据
)