Explicit vs implicit SQL joins
Is there any efficiency difference in an explicit vs implicit inner join? For example:
SELECT * FROM
table a INNER JOIN table b
ON a.id = b.id;
vs.
SELECT a.*, b.*
FROM table a, table b
WHERE a.id = b.id;