Pivot keyword on newline in beautifier

roselan

Member²
Heyhey,

it would be nice that Pivot keyword got it's own new line in the beautifier

instead of

SQL:
select *
from (select thing
        from stuff
        join more_stuff
       where some_random_things = are_realy_long_meaninless_names) pivot count(*) for stuff in (bunch_of_things);

would be

SQL:
select *
from (select thing
        from stuff
        join more_stuff
       where some_random_things = are_realy_long_meaninless_names)
pivot count(*) for thing in (bunch_of_things);

if it's already possible, could you please tell me how?

thanx++
 
Back
Top