I would love to have the possibility to set the "AS" statement automatically for aliases in SQL and align them if desired.
Furthermore the option to duplicate the attribute name as alias for all attributes could help reading the SQL code as well.
Example:
select attribute1 , attribute_xy attribute2 , sum(blabla) sum_value , count(*) as counter from table1 group by 1,2;
This should be possible to format into:
select attribute1 as attribute1 , attribute_xy as attribute2 , sum(blabla) as sum_value , count(*) as counter from table1 as table1 group by 1,2;
