Table Column Format Correction
In cases where there is SELECT DISTINCT or SELECT TOP(n) .. I would l like the option to format my table's columns to appear on the next line and indented 1 tab or set of spaces in from the SELECT and not necessarily aligned with DISTINCT or TOP in the line above.
SELECT DISTINCT
COLUMN1,
COLUMN2
FROM ...
instead of
SELECT DISTINCT
Column1,
Column2
FROM ...
3
votes
Dave
shared this idea
-
Lee Robinson commented
These two look exactly the same to me the way they are displayed on my screen. I would like the predicate to not have any effect on the indention since it is not a column name.