Difference between Stored Procedure and User Defined Function in Sql Server

Below are the some of the major differences between User Defined Function and Stored Procedure in Sql Server.

To know more on the User-Defined functions with examples please visit the article: User-Defined function.
To know more on the Stored Procedure with examples please visit the articleStored Procedure.

Sl. No. User Defined function Stored Procedure
1 Function must return a value. Stored procedure may or not return values.
2 Will allow only Select statement, it will not allow us to use DML statements. Can have select statements as well as DML statements such as insert, update, delete
etc
3 It will allow only input parameters, doesn’t support output parameters. It can have both input and output parameters.
4 It will not allow us to use try-catch blocks. For exception handling we can use try catch blocks.
5 Transactions are not allowed within functions. Can use transactions within Stored procefures.
6 We can use only table variables, it will not allow using temporary tables. Can use both table variables aswell as temporary table in it.
7 Stored procedures can’t be called from function. Stored Procedures can call functions.
8 Functions can be called from select statement. Procedures can’t be called from Select/Where/Having etc statements. Execute/Exec
statement can be used to call/execute stored procedure.
9 UDF can be used in join clause as a result set. Procedures can’t be used in Join clause

[ALSO READ] You may like to read below other popular articles on differences
Varchar Vs NVarchar
Varchar Vs Varchar(MAX)
Char Vs Varchar
Union Vs Union All
DateTime Vs DateTime2
SET QUOTED_IDENTIFIER ON Vs OFF
Primary Key Vs Unique Key
RAISERROR Vs THROW
Temporary Table Vs Table Variable
LEN() Vs DATALENGTH()
Sequence Vs Identity

25 thoughts on “Difference between Stored Procedure and User Defined Function in Sql Server

    1. in 1st point..function must return a value but in 3rd point function doesn’t support output parameters..can you conclude my question

      1. A parameter is a name (address) you pass to the function. With a stored procedure you could “return” many values. Only one value is returned with a function.

        1. You don’t pass name to parameter, you pass value/data to function via parameter name, a function will receive the data, perform some operating on data it receive and return the result..

  1. Wonderful post on difference between UDF & Stored Procedure. You have written it in a very straightforward. Very easy to understand.

  2. nice article bro bt i hv 2 doubt please clear it out… u said sp may or may nt return value bt i think sp always return value which may b 0 or 1.is nt so ? scnd is that we cn use handling in functn yar.just use try catch.bt i m nt able to undrstand why every site tellng me u cn use handlng in sp nt in functn bt i think vise versa true.please clear my doubts.

  3. 1. when and where we can use the user defined functions instead of stored procedure ?? & one example

    2. why introduce functions we have already stored procedures ??

    3. where we can use UDF , if there is not possible to use SP ?

  4. Very good synopsis. I would like to add another difference:-
    Function can return a table, but stored procedure cannot

Leave a Reply to Ayaskant Cancel reply

Your email address will not be published. Required fields are marked *