-
Notifications
You must be signed in to change notification settings - Fork 13
Alignment create table field
Tako Lee edited this page Mar 2, 2024
·
7 revisions
- gfmtopt.Createtable_Fieldlist_Align_option, type of TAlignOption
- TODO
- Align field name in create table statement
-
Left align:
Option: fmt176_createtable_field_align = left, type: TFmtAlign.
CREATE TABLE mytable ( low int, high int, myavg AS (low + high)/2 ) ;
-
Right align:
Option: fmt176_createtable_field_align = right, type: TFmtAlign.
CREATE TABLE mytable ( low int, high int, myavg AS (low + high)/2 ) ;
-