MS SQL Server Create Function

The MS SQL Server Create Function Tool allows users to create stored Functions for a database. The following example is output for MS SQL Server.

create function dbo.test_function ( @param1 char(25), @param2 datetime, @param3 decimal ) RETURNS char as --insert function body here

MS SQL Server Create Function