Skip to content

Space inside parenthesis of function call

Tako Lee edited this page Mar 11, 2014 · 2 revisions
  • No space

    Option: fmt098_space_padding_function_call = false, type: TFmtBoolean.

    SELECT department_id, 
           Min(salary)  
    FROM   employees  
    GROUP  BY department_id  
  • One space

    Option: fmt098_space_padding_function_call = true, type: TFmtBoolean.

    SELECT department_id, 
           Min( salary )  
    FROM   employees  
    GROUP  BY department_id  
Clone this wiki locally