Neil Smith
Member
Would it be possible to add an option for formatting the column lists of select statements?
For instance, I like my SQL to be formatted as:
rather than:
i.e. add a "split after SELECT" option.
Note, the formatting has been lost
, the columns in the first example should all be indented by the shift width characters, whereas the second example should have all the columns aligned under the first column.
For instance, I like my SQL to be formatted as:
Code:
SELECT
column1,
column2,
column3
FROM table1
rather than:
Code:
SELECT column1,
column2,
column3
FROM table1
i.e. add a "split after SELECT" option.
Note, the formatting has been lost

Last edited: