Home »
PL/SQL MCQs
Which of the following is the correct syntax to fetch the cursor?
91. Which of the following is the correct syntax to fetch the cursor?
- FETCH cursor_name INTO variable_list;
- FETCH variable_list INTO cursor_name;
- INTO cursor_name FETCH variable_list;
- INTO variable_list FETCH cursor_name;
Answer: A) FETCH cursor_name INTO variable_list;
Explanation:
FETCH cursor_name INTO variable_list is the correct syntax to fetch the cursor.