0 votes
in PL/SQL by
Explain what Is The Basic Difference Between Procedure And Function?

1 Answer

0 votes
by
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.

Related questions

0 votes
asked Dec 1, 2022 in JavaScript by john ganales
0 votes
asked Mar 20, 2021 in JavaScript by sharadyadav1986
...