stored procedures

M

Mike

In any .mdb-database one can make a query processing data retrieved by
another query.
So how can I process data retrieved by a stored procedure?
Please, explain in few words or give me any reference.
Thanks
 
J

James Goodman

Your best bet is probably to convert the SP into a UDF. You can select from
UDF's, but not from SP's. They are executed...
 
Top