表table1有字段 id a b c 其中 id是主键
表table2有字段 id a b c d e f g 其中id是主键
怎么能把table1中的内容完全复制到table2中。没有的字段就让他空着。
答: --如果id是标识字段,不需要复制的话
insert into table2(a,b,c) select a,b,c from table1
--如果id不是标识字段,需要复制的话
insert into table2(id,a,b,c) select id,a,b,c from table1
--如果id是标识字段,也需要复制的话
set identity_insert table2 on
insert into table2(a,b,c) select a,b,c from table1
set identity_insert table2 off
因篇幅问题不能全部显示,请点此查看更多更全内容