Reputation: 53603
Does aliasing tables names in large queries have noticeable impact on performance?
Aliasing:
...
...
FROM table_1 T1
...
...
...
Is it significantly different for the various DB systems out there?
Upvotes: 4
Views: 133
Reputation: 26190
There a discussion about this topic already. In short, there is no significant impact on performance caused by aliasing table names.
Upvotes: 4