What is Difference between StoredProcedure and function?
Answers were Sorted based on User's Feedback
Answer / shankar
FUNCTION always return a value where as PROCEDURE may or
may not return value.
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / ganesh sial
1. Function is mainly used in the case where it must
return a value. Where as a procedure may or may not return
a value or may return more than one value using the OUT
parameter.
Â
2. Function can be called from SQL statements where as
procedure can not be called from the sql statements
3. Functions are normally used for computations where as
procedures are normally used for executing business logic.
4. You can have DML (insert,update, delete) statements in a
function. But, you cannot call such a function in a SQL
query.
5. Function returns 1 value only. Procedure can return
multiple values (max 1024).
6.Stored Procedure: supports deferred name resolution.
Example while writing a stored procedure that uses table
named tabl1 and tabl2 etc..but actually not exists in
database is allowed only in during creation but runtime
throws error Function wont support deferred name
resolution.
7.Stored procedure returns always integer value by default
zero. where as function return type could be scalar or
table or table values
8. Stored procedure is precompiled execution plan where as
functions are not.
Â
9.A procedure may modify an object where a function can
only return a value The RETURN statement immediately
completes the execution of a subprogram and returns control
to the caller.
2. Function -
1) Have to return a single value to the calling program
2) Can call functions in sql statements
3) Cannot return images
.
Procedures -
1) Do not return any value except assigning values to OUT
variables
2) Cannot call procedures in sql statements
3) Can return images
Is This Answer Correct ? | 1 Yes | 0 No |
We can use a function in the select query, but Procedure we
can't use in select query. But the function created with out
parameter, we can't use in select statement. Only in
parameter, we can use.
Is This Answer Correct ? | 1 Yes | 1 No |
Write a query to find the name of employees those who have joined on Monday.(based on column hire_date)
how to Update table Sales_summary with max(sales) data from table sales_dataTable 1. sales_data table Table 2. Sales_summary Region sales Region sales N 500 N 0 N 800 W 0 N 600 W 899 W 458 W 900 I want the Sales_summary After Update like this Region Sales N 800 W 900
Can a varchar be a primary key?
Can we insert in sql function?
Does inner join return duplicate rows?
Which are the different types of indexes in sql?
I want to execute a piece of code before calling a procedure. How to achieve it?
What steps server process has to take to execute an update statement?
What is clause in sql?
Is primary key a clustered index?
What are all the common sql functions?
How do you bind variables in pl sql?