Beautifier: SQL left alignment

Yavor

Member
Hi,

Is it possible to configure Beautifier to left align
e.g. - instead of

Code:
select a,b,c
  from t1
  join t2
    on ..
 where ....
   and

I'd wish to get:

Code:
select
    a,b,c
from
    t1
    join t2 on (...)
    join t3 on (...)
where
    ...
    and

 
Back
Top