将一个表的数据追加到另一表中,该怎么解决

将一个表的数据追加到另一表中
如题,如果存在A和B表,且表的字段相同,如何将A表的数据追加到B表中.不用游标的方式.

------解决方案--------------------
Insert B Select * From A
------解决方案--------------------
Insert Into B表
Select * From A表
------解决方案--------------------
Insert Into B Select * From A
------解决方案--------------------
Insert Into B Select * From A where 條件
------解决方案--------------------
select * into b from a