为什么你不能这样做,有解决办法吗?
你得到这个错误。
消息 2714,级别 16,状态 1,第 13 行数据库中已经有一个名为“#temptable”的对象。
declare @x int
set @x = 1
if (@x = 0)
begin
select 1 as Value into #temptable
end
else
begin
select 2 as Value into #temptable
end
select * from #temptable
drop table #temptable