-
Notifications
You must be signed in to change notification settings - Fork 13
SQL function
Tako Lee edited this page Feb 18, 2014
·
6 revisions
- Parameters
-
Fit into one line
SET @a = dbo.Func1(@param1, @param2, @param3 + 1, @param4)
-
Stacked parameters
-
Comma at the end of line
SET @a = dbo.Func1(@param1, @param2, @param3 + 1, @param4)
-
Comma at the begin of line
SET @a = dbo.Func1(@param1 ,@param2 ,@param3 + 1 ,@param4)
-
Comma at the begin of line, align parameters
SET @a = dbo.Func1(@param1 ,@param2 ,@param3 + 1 ,@param4)
-
Comma at the begin of line, align parameters, space between comma and space is 1 or n
SET @a = dbo.Func1( @param1 , @param2 , @param3 + 1 , @param4)
-
-