(SQL) SQL (2014)

New SQL Server project templates for VS2015 (Create Scalar Function.sql)

   1:  CREATE FUNCTION $SchemaQualifiedObjectName$
   2:  (
   3:      @param1 int,
   4:      @param2 int
   5:  )
   6:  RETURNS INT
   7:  AS
   8:  BEGIN
   9:      RETURN @param1 + @param2
  10:  END


Comments ( )
Link to this page: //www.vb-net.com/VS2015-SQL-Server-Project-Templates/Create-Scalar-Function-sql.htm
< THANKS ME>