This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
Functions are supposed to be utility kind of code which return some value whereas procedures can have side effects i.e. it changes some value in the database. SP can have IN/OUT parameters which means that more than one return value is possible.
A Procedure may or may not return a value.By default it wont return any thing.You have to make it return some value by the use of OUT or IN/OUT parameter.
Function will return a value by default.
Have a Great Day!
Vineela Devi
Ranch Hand
Joined: Dec 20, 2003
Posts: 191
posted
0
Hi, Thanks for ur replies.Can u please tell me in detail when should we optfor functions and when for stored procedures?
Hi, Basically a stored proc can do everything that a function can but the opposite need not be true always. Like you cannot change the system date etc from a UDF but you can do it from a Stored Proc.