I have two stored procedure which returns something like this:
call proc1('Jack');
+------+------------+
| 3232 | Admin |
+------+------------+
| 3254 | SuperUser |
+------+------------+
| 3264 | Admin |
+------+------------+
call proc2('Martin');
+------+--------+
| 6345 | User |
+------+--------+
| 6309 | Stuff |
+------+--------+
How can I use combine the result of those two procedure and use the final result?