請參閱下面的代碼:存儲過程:已經有一個數據庫名爲「#columntable」對象
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE PROCEDURE Test
AS
BEGIN
begin
select * into #dbreviews from dbreviews
end
drop table #dbreviews
begin
select * into #dbreviews from dbreviews
end
END
GO
我得到的錯誤是:
已經有一個名爲對象數據庫中的
'#dbreviews'
。
這樣的問題:There is already an object named '#columntable' in the database告訴我這應該是可能的。