Skip to content

SQL indentation use tab

shenhuan2021 edited this page Mar 3, 2024 · 2 revisions

Delphi

  • gfmtopt.UseTab, type of Boolean

Java

  • public Boolean UseTab, type of Boolean

Uniform

  • Use tab to indent

    Option: fmt125_indent_use_tab = true, type: TFmtBoolean.

    SELECT name,
            age
    FROM   person
    WHERE  age > 30
             AND sex = 'male'
             OR grade = '1'

    Option: fmt125_indent_use_tab = false, type: TFmtBoolean.

    SELECT name,
           age
    FROM   person
    WHERE  age > 30
           AND sex = 'male'
           OR grade = '1'
Clone this wiki locally