I create three stored procedure in MySQL. It's working fine. Now I read the third procedure using C#. It returns the two tables named table, table1. How can I assign name of the each tables? I'm really confused the tables name while using more than 8 or 10.
create procedure dbo.GetPeople
as
begin
select * from dbo.Person;
end;
create procedure dbo.GetCars
as
begin
select * from dbo.Car;
end;
-- This gives the same result as before
create procedure dbo.GetSomething
as
begin
exec dbo.GetPeople;
exec dbo.GetCars;
end;