これを行うことはできませんし、回避策はありますか?SQL Server 2005エラー
このエラーが発生します。
メッセージ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