I would like to know which is the difference between a query with a join and a query with several tables at the FROM clause.
For example:
SELECT *
FROM table1 NATURAL JOIN table2.
or
SELECT *
FROM table1, table2
WHERE table1.field=table2.field.
Thank you so much.