select * into tableA from tableB where …
insert into tableA
select * from tableB where…
insert into schemaA.tableA
select * from schemaB.tableB where…
insert into tableA
select *,NULL from tableB where…
原文:https://www.cnblogs.com/beiyi888/p/12031314.html