Which three statement types can be prepared?
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?
You started a MySQL command –line session with sq1_ mode (empty), and created the person table with the structure:
Mysql> DESC person;
You issue:
INSERT INTO person VALUES (‘casper’, ‘undefined’)
What is the effect?
The people table contains the data as shown:
Which two statements return two rows each?