Which Of The Following Is The Correct Is The Correct Syntax For #581
Which of the following is the correct is the correct syntax for exception handling?
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 Records, Exceptions and Triggers - PL/SQL Exceptions - Quiz No.1.
Which of the following is the correct is the correct syntax for exception handling?
WHEN exception1 THEN { exception1_handling_statement}; WHEN exception2 THEN { exception2_handling_statement}; ........ WHEN others THEN{ Exception_handling_statement};WHEN exception1 THEN exception1_handling_statement WHEN exception2 THEN exception2_handling_statement ........ WHEN others THEN Exception_handling_statementWHEN exception1 exception1_handling_statement WHEN exception2 exception2_handling_statement ........ WHEN others Exception_handling_statementexception1 THEN exception1_handling_statement exception2 THEN exception2_handling_statement ........ others THEN Exception_handling_statement