SQL - Stored Procedures and Functions
How would you modify this procedure to return both the sum and product of two numbers?
CREATE PROCEDURE calc(IN a INT, IN b INT, OUT sum INT)
BEGIN
SET sum = a + b;
END;
