I have stored procedure A and want to call store procedure B from A by passing a @mydate
parameter. Stored procedure B will return a rowset which I can further use in procedure A.
I researched this on Google but did not find anything without using a temporary table. Is there an easy way to get this without a temp table.
P.S.: I tried to get this done using stored procedure as A and a function as B easily. But want to know if I can get it done only by using stored procedures.