O
Oracle Certified Professional, MySQL 5.6 Developer
100 Questions
Question No. 1
Consider the stored procedure
CREATE PROCEDURE param_test (
IN P_in INT,
OUT P_out INT,
INPUT P_inout INT)
BEGIN
SELECT P_in, P_out, P_ inout;
SET P_in, P_inout
END
You execute a series of commands:
What is the output of the CALL and SELECT?
Choose the correct option from the given list.
01 / 100