Tag: databases
Questions Related to databases
GET DIAGNOSTICS
Which of the following can be a user defined SQLSTATE
What will be the initial value of V_MAX in the declaration statement shown below? DECLARE v_max DECIMAL(9,2);
CREATE PROCEDURE testproc( IN i1 INT, INOUT i3 INT) SPECIFIC testproc BEGIN SET i3 = i1; END @ CREATE PROCEDURE testproc( IN i1 INT, INOUT i2 INT, INOUT i3 INT) SPECIFIC testp BEGIN SET i3 = i1 * i2; END @ Given that the statements in the exhibits have executed successfully, which solution contains the complete set of commands that could be used to drop both procedures in the order presented?