复制表及表数据

 

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   //灵活加条件,根据查询的结果作为结构及数据

)

 

posted on 2021-01-25 16:29  刀锋93  阅读(109)  评论(0编辑  收藏  举报

导航