Enhancement Request: Beautifier

ScottMattes

Member³
I would like this

row_number() over( partition by yada order by yada) as my_field

to come out like this

Code:
row_number() over( partition by yada
                       order by yada) as my_field
Thank you
 
Back
Top