Home »
PL/SQL MCQs
Which of the following is the correct syntax to declare explicit cursor?
90. Which of the following is the correct syntax to declare explicit cursor?
CURSOR IS name
SELECT statement;
CURSOR name is
Statement SELECT;
Name IS CURSOR
SELECT statement;
CURSOR name IS
SELECT statement;
Answer: D)
CURSOR name IS
SELECT statement;
Explanation:
The correct syntax to declare explicit cursor is –
CURSOR name IS
SELECT statement;