SET @sql1 = 'SELECT * INTO #temp WHERE ...' exec(@sql1) SELECT * from #temp (this line throws an error that #temp doesn't exist)
显然这是因为exec命令会旋转一个单独的会话,而#temp是该会话的本地会话.我可以使用全局临时表## temp,但是我必须提出一个命名方案来避免冲突.你们都推荐什么?
Create Table #temp (..)