SQL Select with Binary Link

william humphrey shoreagent at gmail.com
Fri Jun 13 12:22:43 CDT 2008


SELECT Phone.*
FROM phone JOIN customer ON  customerphone
WHERE customer.ID = 5

Also if there is no ambiguity you can do lazy case

SELECT Phone.*
FROM phone, customer
WHERE customer.ID = 5

How do you modify the above so a record is returned with customer fields
even if there is no corresponding phone records?


More information about the Valentina mailing list