我需要将具有相同字段名称的几个表中的数据插入到一个临时表中,我知道我可以使用游标/循环来执行此操作,我想知道是否有更快的方法来执行此操作。
从表1,表2,表3中选择#temptable。
答案 0 :(得分:3)
select * into #temptable from table1
insert into #temptable select * from table2
insert into #temptable select * from table3
第一个查询在插入时创建临时表,其余的只是不断添加数据。