I can get the result of a select statement into a cursor...
declare cr cursor for select * from clients
but I cannot seem to get the result of another stored procedure into the cursor...
delcare cr cursor for exec sp_get_from_clients
Is there a way to achieve this?
declare cr cursor for select * from clients
but I cannot seem to get the result of another stored procedure into the cursor...
delcare cr cursor for exec sp_get_from_clients
Is there a way to achieve this?