RETURNING INTO Clause mode is OUT so cannot specify parameter mode - SQL Operations
Q. By using which clause, the mode is OUT, so you cannot specify a parameter mode for output bind arguments?- Published on 19 Oct 15a. USING Clause
b. RETURNING INTO Clause
c. Both A & B
d. None of the above
ANSWER: RETURNING INTO Clause
By using the USING clause the default mode is IN, so we need not specify a parameter mode for the input bind arguements. With the RETURNING INTO clause the mode is OUT so we cannot specify a parameter mode for output bind arguements.