Can I create a stored procedure or function that calls another stored procedure or function within its declaration? If so, can I get an example?
Here's what I've tried... seems like there's little hope
Code:
delimiter |
CREATE PROCEDURE t1(p1 int)
BEGIN
CALL PROCEDURE t2(p1);
END;
|
DELIMITER ;