0 votes
in PL/SQL by
Explain what Is A Procedure? Can It Be Stored In The Database?

1 Answer

0 votes
by
A procedure is a named PL/SQL block (subprogram) that can have more than one parameter as an input from the calling environment and it may return none, one, or more than one value.

Yes, it can be compiled and stored in the database as a schema object and used for execution at any point of time.
...