vote up 1 vote down star
1

For example, I have a pet table and a lost pets table. I want to get all of the pets that are NOT lost with 1 join and no sub-selects. Is that possible? A typical join only returns results that are in both tables.

flag

4 Answers

vote up 3 vote down check

You're describing an OUTER JOIN as compared to a standard INNER JOIN. Google or check your documentation - I'm sure you'll find lots of examples. :)

SELECT * FROM pets AS p
LEFT OUTER JOIN lost-pets AS lp
ON p.name = lp.name
WHERE lp.id IS NULL

link|flag
vote up 2 vote down
SELECT PETS.NAME
FROM PETS
   LEFT OUTER JOIN LOST_PETS
     ON PETS.PET_ID = LOST_PETS.PET_ID
WHERE LOST_PETS.PET_ID IS NULL;
link|flag
vote up 1 vote down

It is possible, yes, say :

SELECT *
FROM pets LEFT OUTER JOIN pets-lost ON pets.id = pets-lost.id
WHERE pets-lost.id IS NULL;
link|flag
vote up -1 vote down

Why not do where not exists (select * from Lost ...)? Its a sub-select, but I don't see why thats a problem.

link|flag
one problem is that e.g. old versions of mysql don't support subselects. – le dorfier Dec 15 '08 at 22:06
one other problem, is that subselects are much more slow than joins. – mat Dec 15 '08 at 22:07
one additional problem is that the question asked how to do it without sub selects – Dave L. Dec 15 '08 at 22:09
@mat: "subselects are much more slow than joins" not always true. You need to actually measure. Some subselects are optimized into joins. – S.Lott Dec 15 '08 at 22:14
The better the query optimizer, the less it matters. However, some are dumb indeed. – Zan Lynx Dec 16 '08 at 2:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.