Economy, asked by arshveer5147, 1 year ago

Difference between procedure and function in plsql

Answers

Answered by Anonymous
0

The function must return a value but in Stored Procedure it is optional. Even a procedure can return zero or n values. Functions can have only input parameters for it whereas Procedures can have input or output parameters. Functions can be called from Procedure whereas Procedures cannot be called from a Function.

Similar questions