Option to not square bracket aliases
It would be nice to have an option to not but square brackets around aliases as it's our style to not do so. We find it makes the aliases unnecessarily long,since most of our aliases are 1 or 2 letters.
For example
SELECT
T.[TableId],
T.[Name]
FROM
[dbo].[MyTable] T
vs
SELECT
[T].[TableId],
[T].[Name]
FROM
[dbo].[MyTable] [T]
Currently we have to go back and rename an alias to itself so that the square brackets go away.
8
votes
Will
shared this idea