Skip to content

SQL indentation tab size

shenhuan2021 edited this page Mar 3, 2024 · 2 revisions

Delphi

  • gfmtopt.TabSize, type of Integer

Java

  • public Integer TabSize, type of Integer

Uniform

  • set tab size to indent

    Option: fmt126_indent_tab_size = 2, type: TFmtInt.

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


> *Option:*  **fmt126_indent_tab_size** = **10**, type: **TFmtInt**.
```SQL
SELECT name,
        age
FROM   person
WHERE  age > 30
        AND sex = 'male'
        OR grade = '1'
Clone this wiki locally