-
Notifications
You must be signed in to change notification settings - Fork 13
Select into clause
shenhuan2021 edited this page Mar 3, 2024
·
5 revisions
Align AS keyword in select list.
- gfmtopt.IntoClauseInNewline, type of boolean
- TODO
-
into item in the same line as INTO keyword
Option: fmt005_select_into_clause_in_newline = false, type: TFmtBoolean.
SELECT Lastname, Firstname INTO Persons_backup FROM Persons
-
into item in new line, indented by 1 to n
Option: fmt005_select_into_clause_in_newline = true, type: TFmtBoolean.
Option: fmt006_select_into_clause_indent = n, type: int.
SELECT Lastname, Firstname INTO Persons_backup FROM Persons