New SQL Server project templates for VS2015 (Create Inline Function.sql)
1: CREATE FUNCTION $SchemaQualifiedObjectName$
2: (
3: @param1 int,
4: @param2 char(5)
5: )
6: RETURNS TABLE AS RETURN
7: (
8: SELECT @param1 AS c1,
9: @param2 AS c2
10: )
Comments (
)
Link to this page:
//www.vb-net.com/VS2015-SQL-Server-Project-Templates/Create-Inline-Function-sql.htm
|