It is possible in MySQL to implicitly qualify the table names where columns are unique to a given table e.g.
SELECT
MyTable1.MyColumn1
FROM MyTable1 INNER JOIN MyTable2 etc.
can also be written as
SELECT
MyColumn1
FROM MyTable1 INNER JOIN MyTable 2 etc.
on the assumption that MyColumn1 is unique to the first table only.
Is there any effect on performance for either option?
SELECT
MyTable1.MyColumn1
FROM MyTable1 INNER JOIN MyTable2 etc.
can also be written as
SELECT
MyColumn1
FROM MyTable1 INNER JOIN MyTable 2 etc.
on the assumption that MyColumn1 is unique to the first table only.
Is there any effect on performance for either option?