Skip to content
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

      • Comma at the begin of line, align parameters

      • Comma at the begin of line, align parameters, space between comma and space is 1 or n

Clone this wiki locally