No, unfortunately you can't. You can create a temporary table and insert the output of teh stored proc into the table. Then select the record(s) form the table.
/* modify to match the output of the SP */
create table #t (ColStudent varchar(40))
insert #t
exec sp_student
select * from #t
Drop table #t Terry Broadbent
"The greatest obstacle to discovery is not ignorance -- it is the illusion of knowledge." - Daniel J Boorstin
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.