Hi All

I have a concatenated sql string:

set @sqlString = 'Select * from blah'

I can then of course execute it with :

exec (@sqlString)

I need to return this select somehow. How can I do something like :

Select * from (exec (@sqlString))


Thanks In Advance