SQL - Stored Procedures and Functions
Given this procedure:
What will be the output after executing:
CREATE PROCEDURE increment_value(INOUT num INT)
BEGIN
SET num = num + 20;
END;
What will be the output after executing:
SET @val = 15;
CALL increment_value(@val);
SELECT @val;
