Beautifier Enhancements

clivew

Member²
I would just like to add my vote for control of where clauses.

Without a "one per line" option I really find the beautifier of little use.

I see that this option has been promised for some time in the forum. I do hope it is now imminent.

Also, this option should be independent of other options.

Thanks,
Clive
 
It would be wonderful if the beautifier could either:
- ignore where clauses altogether
- format the where clauses so that the boolean expressions were used as list delimiters, as in:
where a = b
and c = d
or j = d
 
Sorry, the leading spaces appear to have been dropped in my last post. The intent was to have the "and" and "or" keywords right-aligned with the "where" keyword. Thanks.
 
Originally posted by Marco Kalter:
We'll have additional formatting options for where clauses in 6.0.
Hi Marco,

Has there been a request for the following (pascal) style of formatting:

Code:
select
  a.a,
  a.b,
  b.a
from
  aaa a,
  bbb b
where
  a.a = b.a
order by
  a.a,
  a.b
If not, please add to your list.
Thanks.
 
Back
Top