Module - 6 Functions
Module - 6 Functions
User-Defined Functions
Overview
Scalar Functions
Similar to a built-in function
Creating a Function
USE Northwind
CREATE FUNCTION fn_NewRegion
(@myinput nvarchar(30))
RETURNS nvarchar(30)
BEGIN
IF @myinput IS NULL
SET @myinput = 'Not Applicable'
RETURN @myinput
END
Restrictions on Functions
The ALTER FUNCTION and DROP FUNCTION Statements