I have a stored procedure which returns a Dataset(Table). How can I use the result of this stored procedure in a SELECT statement?
I need s
I agree with Marcelo mostly, but if you are set on using a stored procedure, or your stored procedure does anything that affects data, you could create a #temp table with the structure of the output of your stored procedure, and then do something like 
INSERT INTO #temp
EXEC [dbo].[SPGetResults] '900',300,'USD'
And then do your joins and selects on the temp table.