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.
|
|
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 |
||
|
|
|
|
|
||
|
|
|
|
It is possible, yes, say :
|
|||
|
|
|
|
Why not do where not exists (select * from Lost ...)? Its a sub-select, but I don't see why thats a problem. |
||||||||||
|
