SELECT col1, col2, col3, EXEC GetAIntFromStoredProc(T.col1) AS col4 FROM Tbl AS T WHERE (col2 = @parm)
How to write this
You can create a temp table matching your proc output and insert into it.
CREATE TABLE #Temp ( Col1 INT ) INSERT INTO #Temp EXEC MyProc