Lock
Lock

Reputation: 5522

Using a temporary table in dynamic sql in a stored procedure

I am writing a Store Procedure in SQL Server 2012. I have a temporary table defined like so:

  DECLARE @CURRENT_RET_WEEK_PTIMEIDS TABLE ( PTIMEID INT )

I am also using EXECUTE to write a dynamic SQL query. Is there any way I can join this table onto the above temporary table?

Upvotes: 2

Views: 12484

Answers (1)

Devart
Devart

Reputation: 122042

Try to use local temp-table -

IF OBJECT_ID ('tempdb.dbo.#temp') IS NOT NULL
   DROP TABLE #temp

CREATE TABLE #temp (ID INT)
INSERT INTO #temp (ID)
VALUES (1),(2)

DECLARE @SQL NVARCHAR(MAX)
SELECT @SQL = 'SELECT * FROM #temp'

EXEC sys.sp_executesql @SQL

Upvotes: 5

Related Questions