Which Of The Following Is The Correct Syntax For The Forloop #522
Which of the following is the correct syntax for the for-loop statement in PL/SQL?
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 Loops, Strings and Arrays - PL/SQL Loops - Quiz No.1.
Which of the following is the correct syntax for the for-loop statement in PL/SQL?
FOR initial_value .. final_value LOOP sequence_of_statements; END LOOP;FOR counter IN initial_value .. final_value LOOP sequence_of_statements; END LOOP;FOR counter IN initial_value .. final_value sequence_of_statements; END LOOP;FOR counter IN initial_value .. final_value LOOP sequence_of_statements;