When joining two tables
This is MySql shorthand for INNER JOIN.
If no recordset is returned from table1 then the whole query returns nothing.
But if you specify RIGHT JOIN then table2 will still return its asked for recordset.
And vice versa for LEFT JOIN.
At least that the way it seems to work for me.