请问我定义一个表变量,如何把结果集写到一个表变量呢如下
declare @table1 table (nvarchar(20),nvarchar(20))
select * into @table1 from(select * from.......)
上面的式子不行啊
thanks
------解决方案--------------------declare @table1 table (col1 nvarchar(20), col2 nvarchar(20))
insert into @table1(col1,col2) select col1, col2 from tbName
或
insert into @table1 select col1, col2 from tbName
写表变量数据最好写列名