Thursday, December 12, 2019

Difference between function and stored procedure


The Function must return a value but in Stored Procedure it is optional. Even a procedure can return zero or n values.

 Function can have only input parameters for it whereas procedure can have input or output parameters.

Function can be called from Procedure whereas Procedure cannot be called from a function.

Featured Post

What is JavaScript? What is the role of JavaScript engine?

  The JavaScript is a Programming language that is used for converting static web pages to interactive and dynamic web pages. A JavaScript e...