SQL - Stored Procedures and Functions
Consider this procedure:
What will be the output of:
CREATE PROCEDURE compute_total(IN x INT, IN y INT, OUT sum_result INT)
BEGIN
SET sum_result = x + y;
END;
What will be the output of:
CALL compute_total(4, 6, @output);
SELECT @output;
