align aliases
Please, separate options to align aliases for columns and tables..... I love aligned column aliases, but table aliases advance too far right, unnecessarily.
7
votes
Anonymous
shared this idea
-
Niels van de Coevering commented
Yes, suggesting the same
Here's an example query. When enabling the "Align aliases" option under "Lists", the aliases for tables are also aligned, which causes the table aliases to move away to the right from the tables.
SELECT
column1 = GETDATE()
,column2withlongname = HOST_ID()
FROM
sys.all_views [av]
INNER JOIN information_schema.views [v]
ON [v].table_name = av.name
INNER JOIN information_schema.view_column_usage [vcu]
ON [vcu].view_name = av.name;