PL/SQL – Nested IF-THEN-ELSE Statements
It is always legal in PL/SQL programming to nest the IF-ELSE statements, which means you can use one IF or ELSE IF statement inside another IF or ELSE IF statement(s). Syntax IF( boolean_expression 1)THEN -- executes when the boolean expression…