Home Forums SQL Server 7,2000 T-SQL How to inner join a result set from stored procedure without creating temp table RE: How to inner join a result set from stored procedure without creating temp table

  • You're going to want to dump it into a temporary table, table variable or if possible change the stored procedure to be a table-valued function (not always possible). Then you can join to it.