Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Perhaps I'm worrying about things I don't need to worry about, but procedures in the "Oracle World" are written in PL/SQL, and PL/SQL does not allow independent DECODE statements -- Oracle allows DECODEs only as an expression within a SQL statement.GetJBB said:'A' is a parameter coming into a procedure...
IF <condition-A> THEN
<whatever-A>;
ELSE
<whatever-B>;
IF <condition-C> THEN
<whatever-C>;
END IF;
END IF;
...