Automatic Formatting of "TableName.Value AS Alias"
If you have a field name "Value" then automatic formatting mis-interprets this if it has an alias.
Formatting:
SELECT TableName.Value AS Alias
FROM TableName
Becomes:
SELECT TableName.Valueas Alias
FROM TableName
Instead of
SELECT TableName.[Value] AS Alias
FROM TableName
1
vote
Paul Campbell
shared this idea