Viewing 2 posts - 1 through 2 (of 2 total)
I think I understand what you are attempting to do. This code example is one that I use to find column names in one table and use them to...
June 11, 2014 at 9:24 am
#1720794
Grasshopper,
I believe that I'm attempting to do the same thing. Are you attempting to something along these lines?
DECLARE @execquery AS NVARCHAR(MAX)
SELECT column1, column2 INTO #TempTable1 FROM table WHERE item1 =...
June 10, 2014 at 8:54 am
#1720444