SQL indentation begin and end function indent - sqlparser/sql-pretty-printer GitHub Wiki

Delphi

  • gfmtopt.BEStyle_Function_BodyIndent, type of Integer

Java

  • TODO

Uniform

  • If SQL block of create function/procedure is a single statement

    Option: fmt127_indent_procedure_body = n, type: TFmtInt.

    CREATE PROCEDURE humanresources.Uspgetallemployees  
    AS  
       SELECT lastname, 
              firstname, 
              jobtitle, 
              department  
       FROM   humanresources.vemployeedepartment;