I am want to return two tables from one Stored Proc. I am not sure if it is possible or not, but it is possible in MSSQL, so, I guess it is possible in MYSQL as well.
What I want to achieve is:
select * from table1;
select * from table2;
result in dataset of two tables. As I experienced till now, where MYSQL get's the first select it returns from there.
I have tried to find on Google, but I didn't find anything that works.