Possible Duplicate:
which query is better and efficient - mysql
What's the difference, if any, between these two (MySQL) SELECT queries?
SELECT name, salary
FROM employee, info
WHERE employee.id = info.id;
SELECT e.name AS name, i.salary AS salary
FROM employee AS e
INNER JOIN info AS i
ON e.id = i.id;
Both represent an (the same?) inner join on the tables employee
and info
.