从8个表格中选择数据到一个临时表中

时间:2010-07-21 15:42:15

标签: tsql

我需要将具有相同字段名称的几个表中的数据插入到一个临时表中,我知道我可以使用游标/循环来执行此操作,我想知道是否有更快的方法来执行此操作。

从表1,表2,表3中选择#temptable。

1 个答案:

答案 0 :(得分:3)

select * into #temptable from table1

insert into #temptable select * from table2
insert into #temptable select * from table3

第一个查询在插入时创建临时表,其余的只是不断添加数据。