The Highest Post






=
Statistics
Count 94
Avg 21.00
Min 21
Max 21

Details



Jessy Suvan Q #17) What is the difference between Function and Stored procedure? Ans: Stored Procedure: A Stored procedure is always used to perform a specific task. It can return zero, one or more value. It can have both Input and Output Parameters. Exception handling can be done using a try-catch block. A function can be called from a Procedure. Functions: Functions must return a single value. It can only have the input parameter. Exception handling cannot be done using a try-catch block. A Stored procedure cannot be called from a function.
Post Reply