I have a procedure that returns multiple tables; eg:
PROCEDURE Something AS
BEGIN
SELECT 1,2,3
SELECT 4,5
SELECT 9,10,11
END
I would like to extract each table from the result and insert it into a series of tables / temporary tables - one for each record set.
Is it possible?
Kingsley faulkner
source
share