Which Of The Following Syntax Is Correct For Raising An #584
Which of the following syntax is correct for raising an exception explicitly?
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 syntax is correct for raising an exception explicitly?
IF condition THEN RAISE exception_name; END IF;IF condition RAISE exception_name; END IF;IF condition THEN{ RAISE exception_name}; END IF;IF condition THEN( RAISE exception_name); END IF;