case in sql server 2008 r2

Create Function in SQL Server

--================================
--CREATE FUNCTION WITH PARAMETERS.
--================================
CREATE FUNCTION AddFun1(@NumIst INT,@NumpIInd INT)
RETURNS INT
AS BEGIN
DECLARE @Result AS INT
    SET @Result=@NumIst+@NumpIInd
RETURN @Result
END

----RESULT LOOKS LIKE,
Print test.dbo.AddFun1(10,20) --IS 30

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Create Function in SQL Server Create Function in SQL Server Reviewed by Anil Singh on 9:47 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^