Forum Discussion
saravanakumar28
Jun 13, 2024Copper Contributor
Performance Tuning
The alias name used in the query can affect query performance? For Example : select aB.col1,Ab.col2 from table1 AB join table2 CD on AB.col1 = cd.col1 Question: I have given alias name with capital...
olafhelper
Jun 13, 2024Bronze Contributor
The alias name used in the query can affect query performance?
saravanakumar28 , absolutely not.
I always use alias, especially because it prevents "logical error" in queries.
- saravanakumar28Jun 13, 2024Copper ContributorThank you olafhelper