SQL - Stored Procedures and Functions
What is wrong with this procedure call?
CREATE PROCEDURE proc_example(IN val INT)
BEGIN
SELECT val;
END;
CALL proc_example(@output);
