Multiple choice technology databases

CURSOR FOR loop can be opened with the command...

  1. OPEN

  2. FETCH

  3. PARSE

  4. None, cursor for loops handle cursor opening implicitly

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

A PL/SQL cursor FOR loop automatically manages opening, fetching, and closing the cursor. You do not need to issue explicit OPEN, FETCH, or CLOSE statements.