如何通过sql语句给一个临时表添加一行数据

如题所述

第1个回答  2012-05-01
select * into #temp from table

insert into #temp select * from table2
相似回答