1,添加表B ,和A表表结构相同(带数据)
create table B as select * from A;
2,添加表B ,和A表表结构相同(不带带数据)
create table B as select * from A where 1=2;
3,存在一个表B和表A的表结构一致,将A中的数据复制给B表
insert into B select * from A;
4,存在一个表B和表A的表结构不一致,将A中的数据复制给B表
insert into B (x1,x2,x3...) select x1,x2,x3... from A;
时间: 2024-11-10 07:47:25