Skip to content

Alignments select list column alias

shenhuan2021 edited this page Mar 3, 2024 · 6 revisions

Align AS keyword in select list.

Delphi

  • gfmtopt.AlignAliasInSelectList, type of boolean

Java

  • public boolean alignAliasInSelectList, type of boolean

Uniform

  • Select list
    • Column alias

      Option: fmt089_align_as_keyword_in_select_list = true, type: TFmtBoolean.

      SELECT DISTINCT 
             p.name      AS product, 
             p.listprice AS 'List Price', 
             p.discount  AS 'discount' 
      FROM   production.product p 
Clone this wiki locally