SQL - Stored Procedures and Functions
You have this procedure:
Which of the following calls will correctly update the session variable
CREATE PROCEDURE update_value(INOUT val INT)
BEGIN
SET val = val + 1;
END;
Which of the following calls will correctly update the session variable
@x from 10 to 11?