Is there a way to get the contents of a table returned by a stored procedure?
For example if I have a sp:
create procedure test
as
select 'test'
how can i get at the returned table from the sp from another sp?
I want to do something like: "select * from test"
For example if I have a sp:
create procedure test
as
select 'test'
how can i get at the returned table from the sp from another sp?
I want to do something like: "select * from test"