表结构复制(带数据)
create table new select * from old
表结构复制(不带数据)
create table new select * from old where 1=2
这里给个where条件1=2是为了差不出数据给个空表
表结构复制(like关键字)
create table new like old
复制另一个表的数据(字段数不一致,类型一样)
insert into new(f1,f2,f3) select f1,f2,f3 from old where xxx=xxx
原文地址:https://www.cnblogs.com/mohehpc/p/8331605.html
时间: 2024-10-16 11:16:23