Which Of The Following Is The Correct Syntax For Creating An #565
Which of the following is the correct syntax for creating an explicit cursor?
This multiple choice question (MCQ) is related to the book/course
gs gs115 Structured Query Language.
It can also be found in
gs gs115 PL/SQL Procedures, Functions and Cursors - PL/SQL Cursors - Quiz No.1.
Which of the following is the correct syntax for creating an explicit cursor?
cursor_name IS column_name;
CURSOR cursor_name IS SELECT_statement;
cursor_name CURSOR IS SELECT_statement;
CURSOR cursor_name IS column_name;