1.

What Is The Basic Difference Between Procedure And Function?

Answer»

A PROCEDURE is executed as a PL/SQL statement. It can accept more than one PARAMETER as an input from the CALLING environment and may return NONE, one, or more than one VALUE.

A function is invoked as a part of expression. It can have more than one parameter as an input from the calling environment and it should return a single value to the calling environment using the RETURN statement.

A procedure is executed as a PL/SQL statement. It can accept more than one parameter as an input from the calling environment and may return none, one, or more than one value.

A function is invoked as a part of expression. It can have more than one parameter as an input from the calling environment and it should return a single value to the calling environment using the RETURN statement.



Discussion

No Comment Found