-
Notifications
You must be signed in to change notification settings - Fork 13
SQL indentation tab size
shenhuan2021 edited this page Mar 3, 2024
·
2 revisions
- gfmtopt.TabSize, type of Integer
- public Integer TabSize, type of Integer
- 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'