Example:
If i have a table of things and their owners.
I can do either or to get the same result for a natural join:
SELECT * FROM owners, things WHERE owners.id = things.owner_id
SELECT * FROM owners JOIN things ON owners.id = things.owner_id
Now if I wanted to do a left join? Like so, where all owners are returned...
SELECT * FROM owners LEFT JOIN things ON owners.id = things.owner_id
IS it possible to rewrite any kind of join as a set of WHERE conditions?
Thanks