If I have the following situations:
**table 1
person| money
A | 2
B | 10
-------------
**table 2
person| cars
A | 3
C | 10
---------------
What is the difference between the two?
SELECT * FROM table1 NATURAL LEFT OUTER JOIN table2;
produces:
person| money |cars
A | 2 |3
B | 10 |NULL
---------------
vs
SELECT * FROM table1 LEFT OUTER JOIN table 2 ON person