well it depends on what type of join you would like, but if its just a simple join like you wanted for the original 2 then yes just use left join
Code:
SELECT table1.field FROM table1
LEFT JOIN table2 ON table2.field = table1.field
LEFT JOIN table3 ON table3.field = tableX.field
WHERE tableX = '_condition_'
ORDER BY table.field ASC/DESC
I added ORDER BY incase you wanted to specify how the results are pulled...
Edit:
As a side note the forums over at mysql.com are not very active, so if you did have a question I would suggest using a different site, although they do have good documentation and guides.
Bookmarks