Itay Moav -Malimovka
Itay Moav -Malimovka

Reputation: 53603

Does aliasing tables names in large queries have noticeable impact on performance?

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

Answers (2)

Matthew Jones
Matthew Jones

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

Carl Manaster
Carl Manaster

Reputation: 40336

No. None whatsoever.

Upvotes: 2

Related Questions