Beautifier options for column lists

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:

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 :(, 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.
 
Last edited:
This is the format for finding the list of the column.
SELECT column_name
FROM user_tab_cols
WHERE table_name = 'myTableName'
 
Back
Top