I have a piece of dynamic SQL I need to execute, I then need to store the result into a variable.
I know I can use sp_executesql but can\'t find clear e
sp_executesql
This worked for me:
DECLARE @SQL NVARCHAR(4000) DECLARE @tbl Table ( Id int, Account varchar(50), Amount int ) -- Lots of code to Create my dynamic sql statement insert into @tbl EXEC sp_executesql @SQL select * from @tbl