两张表A和B,结构相同,要求把A表中的一条记录复制到B表中,应该怎么用SQL语句表示。并且效率较高????
热心网友
insert into B select * from A where 条件
热心网友
insert into b select * from a
热心网友
insert into B select * from A where 条件
热心网友
insert into B(a,b,c,...) select a,b,c,... from A where
热心网友
insert into table2 select * from table1
热心网友
期待答案