Which two statements are true about the RETURNING clause when used with DML? (Choose two.)
Which two statements are true about the RETURNING clause when used with DML? (Choose two.)
The RETURNING INTO clause can be used with DML that affects multiple rows if the BULK COLLECT clause is used. This allows capturing the results of an operation affecting multiple rows into collections. The RETURNING INTO clause returns column values for rows affected by DML statements, enabling retrieval of values of specific columns from the affected rows without executing another select query.
C,D is correct E is incorrect https://docs.oracle.com/en/database/oracle/oracle-database/19/lnpls/RETURNING-INTO-clause.html#GUID-38F735B9-1100-45AF-AE71-18FB74A899BE
Answer is C & D
C and D
C, D. Tested every day!
The answer is C and D