Viewing post 1 (of 1 total)
I had similar issue..
You can create a temp table and populate the table with id,email,...
i.e...
INSERT INTO temp
exec(@query)
select * from temp
drop table temp
now the column name will be available in the...
April 30, 2009 at 3:17 am
#986509