Home »
PL/SQL MCQs
What is TRUE about %ROWCOUNT in PL/SQL Cursor?
84. What is TRUE about %ROWCOUNT in PL/SQL Cursor?
- A SELECT INTO statement or DML statements like INSERT, DELETE, AND UPDATE do not result in any rows being affected.
- Results are returned for DML statements such as inserting, deleting, and updating records, or for those returned by a SELECT INTO command.
- Both A. and B.
- None of the above
Answer: B) Results are returned for DML statements such as inserting, deleting, and updating records, or for those returned by a SELECT INTO command
Explanation:
Results are returned for DML statements such as inserting, deleting, and updating records, or for those returned by a SELECT INTO command.