DEVFYI - Developer Resource - FYI

Explain how procedures and functions are called in a PL/SQL block ?

ORACLE Interview Questions and Answers (Part 3)


(Continued from previous question...)

487. Explain how procedures and functions are called in a PL/SQL block ?

Function is called as part of an expression.
sal := calculate_sal ('a822');
procedure is called as a PL/SQL statement
calculate_bonus ('A822');

(Continued on next question...)

Other Interview Questions