While reading about tuning SQL queries, I read somewhere that 'Always use table alias and prefix all column names with the aliases when you are using more than one table.'
How does table alias names affect performance? Or Do they actually affect?
|
While reading about tuning SQL queries, I read somewhere that 'Always use table alias and prefix all column names with the aliases when you are using more than one table.' How does table alias names affect performance? Or Do they actually affect? |
|||||
|
|
The doesn't affect performance in any practical or meaurable way at all (italics added on edit). That is, it would add a barely (if it all) measurable delay to query compilation. Once compiled (and re-used) then it has no affect It does remove ambiguity and is required in some cases eg schema bound views The SQL parsing engine (that reads all queries before executing them, and uses the information to cache the compiled queries in the future for faster execution) is the only thing that looks at the aliases, and uses it to help remove ambiguities in symbol lookups. The system would already produce symbols, just like any other compilable statement in any other language, when it's being parsed prior to execution-storage. |
|||||
|
|
Almost not at all, the performance impact is negligible, but you'll have a much better time reading the query. It's just for your convenience. The performance impact is allocating a few kb of memory to store alias names, etc. in the SQL Server program itself. Compared to the rest of the operations needed to execute your query, this is almost nothing. |
|||||||||
|