Google News
logo
PL/SQL - Quiz(MCQ)
Which of the following is the correct syntax to fetch the cursor?
A)
FETCH variable_list INTO cursor_name;
B)
FETCH cursor_name INTO variable_list;
C)
INTO variable_list FETCH cursor_name;
D)
INTO cursor_name FETCH variable_list;

Correct Answer :   FETCH cursor_name INTO variable_list;


Explanation : FETCH cursor_name INTO variable_list is the correct syntax to fetch the cursor.

Advertisement