Home »
MCQs »
Oracle MCQs »
Oracle Cursor MCQs
What is the syntax to fetch the cursor?
8. What is the syntax to fetch the cursor?
- INTO cursor_name INTO variable_list;
- INTO cursor_name INTO variable_list;
- FETCH cursor_name FETCH variable_list;
- FETCH cursor_name INTO variable_list;
Answer: D) FETCH cursor_name INTO variable_list;
Explanation:
The syntax to fetch the cursor is FETCH cursor_name INTO variable_list;.