The following two are methods of joining two tables together but what I want to know is whether the two methods actually have any differences. I tested the two methods on two tables and they didn't give different results but maybe my two tables were just an anomaly. Are these different at all?
Method 1
SELECT * FROM table1, table2;
Method 2
SELECT * FROM table1 NATURAL JOIN table2;