hi,
you can call an SP from within another SP just like calling it from MySQL client. but instead of passing session variables as SP parameters you can use local variables that have been declared in your parent SP.
just call your SP like this:
Code:
call spName(parameters);
Regards
Chagh