It's not possible to do as you coded. However, you can do the following. Create a temporary table to hold the output of the SP. Insert the output of the SP into the table. Select from the table.
Create table #t (col1 datatype, col2 datatype, ...)
Insert Into #t Exec ('sproc ''TX''')
Insert Into #t Exec ('sproc ''CA''')
Select * From #t
Drop table #t Terry Broadbent
Please review faq183-874.
"The greatest obstacle to discovery is not ignorance -- it is the illusion of knowledge." - Daniel J Boorstin