一、复制表结构及其数据
create table new_table as (select * from old_table);
二、只复制表结构
create table new_table as (select * from old_table where 1=2);
三、只复制表数据
如果两个表结构一样:
insert into new_table select * from old_table;
如果两个表结构不一样:
insert into new_table(column1,column2...) select column1,column2... from old_table;
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/tech/database/4145.html