Create a function in SQL server



To create a function, you use the CREATE FUNCTION statement as follows

CREATE FUNCTION [schema_name.] function_name (parameter_list)
RETURNS data_type AS
BEGIN 
 
statements
 
RETURN value
 
END
 

0 Comment's

Comment Form

Submit Comment