If I have a T-SQL Query like the following:
SELECT [TableAlias].[ColumnOne] AS [Column 1]
FROM [dbo].[TableName] AS [TableAlias]
Will there be a performance difference if I compare the above query with this one below?
SELECT [TableAlias].[ColumnOne] [Column 1]
FROM [dbo].[TableName] [TableAlias]
Assuming the table [dbo].[TableName]
has a lot of data in it.
Any help / insight will be appreciated.