I'm trying to streamline my sql queries for mysql. The use of aliases makes it much easier for me to read, but does it impact the performance? The fact each alias and it's reference have to be stored memory and every time it's referred too, the processor will in theory have more to deal with. Is this worth doing?
Asked
Active
Viewed 38 times
0
-
2The answer is No. See it : http://stackoverflow.com/questions/8363108/how-does-table-alias-names-affect-performance – Sagar Joon May 05 '15 at 09:12
-
What sort of testing did you do on your own? – Dan Bracuk May 05 '15 at 09:30
-
1Don't do anything like that!!! Don't ruin your code to save 0.0001% performance. – jarlh May 05 '15 at 09:36