Joins:
*000Joins
INNER and OUTER are ignored.
FULL is not implemented in MySQL.
FROM a,b WHERE a.x=b.y) is frowned on; use FROM a JOIN b ON a.x=b.y instead.
a, plus matching data from b, or NULLs if there is no matching row.