兩張表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

熱心網友

期待答案